|
|
Re: Why we find 2 ADMINS ( SYS and SYSTEM )!!? [message #219758 is a reply to message #219752] |
Thu, 15 February 2007 19:19 |
|
BlackSwan
Messages: 26766 Registered: January 2009 Location: SoCal
|
Senior Member |
|
|
Based upon your logic then you only need SYS schema & let everyone run as SYS.
You are free to do so on your instances if you want to keep things very simple.
SYS & SYSTEM are different schemas & own different objects.
SQL> select count(*) from dba_objects where owner = 'SYS';
COUNT(*)
----------
23242
SQL> select count(*) from dba_objects where owner = 'SYSTEM';
COUNT(*)
----------
460
|
|
|