Create an oracle 10.1 database on suse 9.1 2004-11-03 - By Paul Foerster
Hey Kyle,
> Connected to an idle instance. > CREATE DATABASE "test1" > * > ERROR at line 1: > ORA-01034 (See ORA-01034.ora-code.com): ORACLE not available
... a wild guess here: make sure your initTEST1.ora is ready and do this:
$ sqlplus Username: / as sysdba SQL> startup nomount
If the instance comes up then everything is fine and you can actually start your script with the CREATE DATABASE command. You _can_not_ do a CREATE DATABASE with no instance running. Since you do not have a database yet but only have (hopefully) created the initTEST1.ora file you need to start the instance before creating the actual database.
Hope this helps. -- cul8er
Paul paul.foerster@(protected)
-- To unsubscribe, email: suse-oracle-unsubscribe@(protected) For additional commands, email: suse-oracle-help@(protected) Please see http://www.suse.com/oracle/ before posting
|
|