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 |
A and B are tables. x is a column. Then What is difference between A.x = B.x(+) and A.x = B.x ?
Given two table employee and department EMP ---------------- empid deptid(fk) Dept --------------------- deptid(pk) deptname que-Write a query to find count of employee in each department. Expected Output- deptid countofEmployee --------------------------- 10 57 20 20 30 15
List out the types of joins.
What is SQL Tuning Advisor in Oracle?
what is a Nested Loop join?
What do you understand by a database object? Can you list a few of them?
What are named parameters?
What is a Database instance ? Explain?
Why cursor variables are easier to use than cursors?
Explain about achiever in sql?
How are the index updates?
What is difference between SUBSTR and INSTR?