Need a script that will "extract" the creation of the database in version 10
I have a script that will extract the creation of a database in version 9.
I need this script to be modified so that it will extract the creation of a database in version 10.
This is what I need and below this is the extraction script for version 9:
CREATE DATABASE PASATIME
MAXINSTANCES 1
MAXLOGHISTORY 292
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 500
DATAFILE '/oradata/pasatime/u01/dbf/system01.dbf' SIZE 500M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
EXTENT MANAGEMENT LOCAL
DEFAULT TABLESPACE USERS DATAFILE '/oradata/pasatime/u01/dbf/users01.dbf' size 100m REUSE
SYSAUX DATAFILE '/oradata/pasatime/u01/dbf/sysaux01.dbf' SIZE 500M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
This is what I need and below this is the extraction script for version 9:
CREATE DATABASE PASATIME
MAXINSTANCES 1
MAXLOGHISTORY 292
MAXLOGFILES 16
MAXLOGMEMBERS 3
MAXDATAFILES 500
DATAFILE '/oradata/pasatime/u01/dbf/system01.dbf' SIZE 500M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
EXTENT MANAGEMENT LOCAL
DEFAULT TABLESPACE USERS DATAFILE '/oradata/pasatime/u01/dbf/users01.dbf' size 100m REUSE
SYSAUX DATAFILE '/oradata/pasatime/u01/dbf/sysaux01.dbf' SIZE 500M REUSE AUTOEXTEND ON NEXT 10240K MAXSIZE UNLIMITED
0