Hi there.

I am trying to create a database in 9i using the following script

SQL> spool off
SQL> @/u01/prb1/prbrun.sql
SQL> spool /u01/prb1/spoolmain.txt
SQL> set echo on
SQL> CREATE DATABASE TEST_1
2 LOGFILE '/u01/test1/logPRB11.ora' SIZE 1024K,
3 '/u01/test1/logPRB12.ora' SIZE 1024K,
4 '/u01/test1/logPRB13.ora' SIZE 1024K,
5 '/u01/test1/logPRB14.ora' SIZE 1024K
6 MAXLOGFILES 32
7 MAXLOGMEMBERS 2
8 MAXLOGHISTORY 1
9 DATAFILE '/u01/test/Sys1PRB1.ora' SIZE 50M
10 MAXDATAFILES 254
11 MAXINSTANCES 1
12 CHARACTER SET WE8ISO8859P1;
CREATE DATABASE PRUEBA_1
*

The script ends in the following error:

ERROR at line 1:
ORA-01092: ORACLE instance terminated. Disconnection forced

Any tip????