1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
   | db_block_size = 2048
 
LogFile
       group 1 'C:\oraclexe\app\oracle\product\the_path\redo1.log' size 10M reuse,
       group 2 'C:\oraclexe\app\oracle\product\the_path\redo2.log' Size 10M reuse
   DataFile 'C:\oraclexe\app\oracle\product\the_path\system.dbf' Size 50M
       autoextend on
       next 10M maxsize unlimited
       extent management local
   sysaux datafile 'C:\oraclexe\app\oracle\product\the_path\sysaux.dbf' Size 10M
       autoextend on
       next 10M
       maxsize unlimited
   undo tablespace the_undo
       datafile 'C:\oraclexe\app\oracle\product\the_path\the_undo.dbf'
       Size 10M
   default temporary tablespace the_temp
       tempfile 'C:\oraclexe\app\oracle\product\the_path\the_temp.dbf'
       Size 10M
       ; | 
Partager