I've just installed oracle 10g for the first time. Because I am new to it and to databases in general, I installed and unistalled it a few times in the process of getting the install working.
Now have installed it, created a database and figured out how to call up Oracle Enterprise Manager in my browser, but it gives me this message:
The database status is currently unavailable. It is possible that the database is in mount or nomount state. Click 'Startup' to obtain the current status and open the database. If the database cannot be opened, click 'Perform Recovery' to perform an appropriate recovery operation.
If I click on either Startup or Perform Recovery, I get a message that the password is not correct for the username.
I am assuming the username must by SYS or SYSTEM , and I know I am typing in the password that I set up when I created the database as I tried creating a new database, being careful about the password, and the same thing recurred.
I looked at my services, and they are all started - except some that seem to be related to databases that were created during my flailing around like a wet hen phase. Those cant be started.
Our system administrator tells me this
When in mount or nomount state.
do the following :
if in mount state
sqlplus "/ as sysdba"
alter database open;
if in nomount state
sqlplus "/ as sysdba"
alter database mount;
alter database open;
But I have no idea whether this is relevant information, or in fact, how to do what he suggests.
Anyone have any suggestions?
Now have installed it, created a database and figured out how to call up Oracle Enterprise Manager in my browser, but it gives me this message:
The database status is currently unavailable. It is possible that the database is in mount or nomount state. Click 'Startup' to obtain the current status and open the database. If the database cannot be opened, click 'Perform Recovery' to perform an appropriate recovery operation.
If I click on either Startup or Perform Recovery, I get a message that the password is not correct for the username.
I am assuming the username must by SYS or SYSTEM , and I know I am typing in the password that I set up when I created the database as I tried creating a new database, being careful about the password, and the same thing recurred.
I looked at my services, and they are all started - except some that seem to be related to databases that were created during my flailing around like a wet hen phase. Those cant be started.
Our system administrator tells me this
When in mount or nomount state.
do the following :
if in mount state
sqlplus "/ as sysdba"
alter database open;
if in nomount state
sqlplus "/ as sysdba"
alter database mount;
alter database open;
But I have no idea whether this is relevant information, or in fact, how to do what he suggests.
Anyone have any suggestions?