OraQA

Oracle Question and Answer


Latest Comments

  • Laurent Schneider:
    if you like a Base64 format, maybe this… select utl_raw.cast_to_varchar 2(...

  • hsafra:
    You need to give more specs for the question: What letter are acceptable? What letters aren’t? Do you...

  • ragunathansd:
    I am not inserting sequence numbers from database. I need to populate the data in a grid. If a user...

  • gamyers:
    “redo log file gets full” That is the nature of a redo log file. It gets full, switched and...

Comments RSS feed


  • Do you have a solution to a problem? Do you have an unanswered question? Login and share it with the Oracle community. More...

Oracle News


Entries RSS feed

Comments RSS feed

What is the difference between SYS and SYSTEM database user accounts?

March 7th, 2006 By Eddie Awad

SYS

  • automatically created when Oracle database is installed
  • automatically granted the DBA role
  • has a default password: CHANGE_ON_INSTALL (make sure you change it)
  • owns the base tables and views for the database data dictionary
  • the default schema when you connect as SYSDBA

Tables in the SYS schema are manipulated only by the database. They should never be modified by any user or database administrator, and no one should create any tables in the schema of user SYS. Database users should not connect to the Oracle database using the SYS account.

SYSTEM

  • automatically created when Oracle database is installed
  • automatically granted the DBA role
  • has a default password: MANAGER (make sure you change it)
  • used to create additional tables and views that display administrative information
  • used to create internal tables and views used by various Oracle database options and tools

Never use the SYSTEM schema to store tables of interest to non-administrative users.

Related documentation

Leave a Reply

You must be logged in to post a comment.

RSS feed for comments on this question