Creating a tablespace with multiple datafiles
Hi All,
I am trying to create a tablespace on an Oracle 10g system using the following syntax, but getting errors. I need another pair of eyes since surely I must be missing something important. I suppose I could just create a 'bigfile' tablespace with autoextend on...
create tablespace "DBSCHEMA_TBL"
nologging
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL01.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL02.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL03.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL04.dbf' size 1000M reuse autoextend
I am trying to create a tablespace on an Oracle 10g system using the following syntax, but getting errors. I need another pair of eyes since surely I must be missing something important. I suppose I could just create a 'bigfile' tablespace with autoextend on...
create tablespace "DBSCHEMA_TBL"
nologging
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL01.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL02.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL03.dbf' size 1000M reuse autoextend ,
datafile 'D:\ORACLE10G\DB_DATAFILES\DBSCHEMA_TBL04.dbf' size 1000M reuse autoextend
0