Hi Don,
This is a fun puzzle, no neeed for an apology!
But again, I'm a big-server DBA, I have very little expertise on Windows.
DBA's are supposed to be problem-solvers!
>> Where can I find those variables so that I can verify that they are correct for the one instance that is not working?
OK, lets start from the beginning:
***************************************
>>
STEP 1 The database became unavailable due to running out of space on the disk in the flash recovery area.
Do you remember the exact ORA- error?
CODE
select * from v$flash_recovery_area_usage;
The solution is to go to the location at db_recovery_file_dest and add disk space to that directory
**********************************
>> I used the web based DB Manager to do a shutdown.
Go back to thre alrt log andf see if it shut down correctly. It's still there . . .
>> others suggested that I bounce the server.
Yup! 99% of the time a bounce will fix the error . . . .
Don, please learn not to rely on the OEM GUI!
I do everywhring at a DOS or UNIX command prompt, and it's FAR easier because you can see exactly what's happening.
I can mail you a free data dictionary poster, to help you understand the dictionary:
http://www.rampant-books.com/poster_oracle_database.htmDBA's who know command-line can earn dluble the ssalary of OEM "button mashers" . . .
I don;t know where you live, nit here in North Carolina, a good Oracle DBA earns over $100,000 per year . . . .
*****************************************************
>> of this there isn't just one ORACLE_HOME/ORACLE_SID located in the Environment Variable area.
Yes, Windows parms are in the registry, the biggest pile of poo ever unleashed on us folks . . . .
FYI, each instance has it;s own init.ora file . . .
In Windows, try $ORACLE_HOME/$ORACLE_SID/pfile
In Windows, Oracle parms are in flat files unless you are using the spfile option . . .
Please read:
http://www.dba-oracle.com/concepts/pfile_spfile.htmI think there is a registry entry that says the exact location if your init.ora file . . .
****************************************************
>> the other two instances worked fine, but the one I am struggling with wouldn't start.
You are running three instances on a personal computer?
when you bounced, two of the three autostarted OK?
Why three instances? Many instances on a larger server is great because Oracle has easily share computing resources, but on a PC it makes me think that you have a very tiny SGA for each instance.
Could you just move the schemas into a single instance?
****************************************************
>> Some people have had this error due to their windows logs being full.
Interesting, I did not know that . . . . I'm adding that to my notes . . .
*****************************************************
>> the flash recovery area is full, leads me to believe that the reason I cannot connect to the database is due to the flash being full.
Disk is cheap! Add a few gig to the directory . . .
>> The second thing I can do is use RMAN to delete the archive logs
Are these on the same disk as your flash recovery area? If so, YES! nuke the oldest ones . . .
****************************************************
>> How can I adjust the db_recoveryfile_dest_size value for that database instance WITHOUT using SQL plus
I would try adding more disk space first!
If the database is down, go to your startup deck (init.ora) at $ORACLE_HOME/$ORACLE_SID/pfile and change it!Since you are on a Windows PC, just go by a disk and gen it in as an e: drive and re-name the directoroes in your init.ora files . . .
Also, since I don;t do Windows, open a service request with Oracle tech support. That's what your license fees pay for. I'll bet they have seen this dozens of times before and will know the exact solution:
http://support.oracle.com If you don't have Oracle tech support, you can rent a Windows DBA for a couple of hours to fix it for you. I have plenty of them, just call 800-766-1884 . . .
In either case, get my free data dictionary poster so you are not so helpless uing only OEM . . . . . .
Let me know if you get it fixed!