Friday, June 21, 2013

Starting Oracle

This is what happens when I don't write stuff down. Fortunately I was able to piece together what I needed to remember when starting up my database after a reboot. And now I'm writing it down!

$ cd install-area/oracle11/software
$ setenv ORACLE_HOME `pwd`

$ setenv ORACLE_SID orcl

$ ./bin/sqlplus 'sys/password as sysdba'

SQL*Plus: Release 11.2.0.3.0 Production on Fri Jun 21 06:35:36 2013

Copyright (c) 1982, 2011, Oracle.  All rights reserved.

Connected to an idle instance.

SQL> startup
.
.
.

$ ./bin/lsnrctl start

Filed under note-to-self and let's hope next time I remember there is a note!