>>You didn't say which Oracle user you are trying to login as.<<
Excuse the ignorance of my question (I am totally new to oracle) but how do I know what user I am logged in as?
>>The standard DBA users are SYS and SYSTEM, those are the users that are set with the password from the installation.<<
Based on that information I tried to log in with user name SYSTEM and using the password that I provided during the installation in SQL *Plus and Oracle Enterprise Management. it seems to work in both so far.
>>As far as the message when you try to login to OEM as SCOTT, a standard user needs to be granted "SELECT ANY CATALOG" or "SELECT_CATALOG_ROLE" to login via OEM. So when you do finally login as a DBA, do the grant:<<
I tried to type in the SQL*Plus the command you mentioned which is
SQL> grant select any catalog to scott;
however it yields the following message
Error at line 1:
0RA-00990: missing or invalid priviledge
Main Topics
Browse All Topics





by: mrjoltcolaPosted on 2009-10-17 at 09:38:10ID: 25596389
You didn't say which Oracle user you are trying to login as.
orcl is not a default Oracle user.
The standard DBA users are SYS and SYSTEM, those are the users that are set with the password from the installation.
As far as the message when you try to login to OEM as SCOTT, a standard user needs to be granted "SELECT ANY CATALOG" or "SELECT_CATALOG_ROLE" to login via OEM. So when you do finally login as a DBA, do the grant:
SQL> grant select any catalog to scott;