What are the differences between a sys and system user and
what are the extra privileges available to the sys user?
Answer / sandip patil
SYS is the owner of the oracle dictionary.
THE DEFAULT superuser or like a 'root' in a oracle database.
Oracle strongly recomends NOT TO use SYS for any regular
adminstration tasks.
please have a look here
http://www.orafaq.com/usenet/comp.databases.oracle.server/20
03/08/06/0511.htm
system is just another account with administrative privs (
by default cannot start/shut databases)
quoting docs
"The Oracle user SYS owns all base tables and user-
accessible views of the data dictionary. Therefore, no
Oracle user should ever alter (update, delete, or insert)
any rows or schema objects contained in the SYS schema,
because such activity can compromise data integrity. The
security administrator should keep strict control of this
central account."
"When a database is created, the user SYSTEM is also
automatically created and granted the DBA role.
The SYSTEM username is used to create additional tables and
views that display administrative information, and internal
tables and views used by various Oracle options and tools.
Never create in the SYSTEM schema tables of interest to
individual users."
| Is This Answer Correct ? | 1 Yes | 1 No |
What is the order of defining local variables and sub procedures/functions?
select trunc(round(156.00,-1),-1) from dual;
How do you get nicely formatted results from an oracle procedure that returns a reference cursor?
What different of iner joint & outer joint with example
How to run queries on external tables?
"primary key=unique+null" is equal,reson?not,reason?
What is oracle update statement with inner join ?
17. Display the order number and average item cost for each order.
I have one table :EID,Depid,ename,sal I want to have max(sal) in each department.
5 Answers Microsoft, Oracle, TCS,
How to delete an existing row from a table in oracle?
Without giving condition how to retrieve the unmatched records from table.
What would you do with an in-doubt distributed transaction?