@echo off REM ----------------------------------------------------------------------- REM -- Create a Personal Oracle8 Database 1998 Frank Naude -- REM -- -- REM -- Notes: This script creates a database called xxx -- REM --- All CREPO8DB files must be in the ORACLE_HOME\DATABASE dir -- REM ----------------------------------------------------------------------- echo. echo Go to Personal Oracle8 database directory... cd C:\ORAWIN95\DATABASE echo. echo Create new INIT.ORA file for database... copy initseed.ora initxxx.ora echo. echo About to start DOS editor for your new INIT.ORA file... echo Remember to update the DB_NAME and CONTROL_FILES parameters!!! pause edit initxxx.ora echo. echo Set the ORACLE_SID in Windows Registry... start set_sid.reg echo. echo Creat password file for SID... orapwd80 file=Pwdxxx.ora password=oracle entries=5 echo. echo Create the database via Server Manager... svrmgr30 command=@crepo8db.sql echo. echo DONE!!! Remember to run the catalog scripts for your new database... echo.