Oracleテープルスペースを作成

//TEMPORARY表スペースを作成

create temporary tablespace ${temptablespacename}
tempfile 'D:\oracle\product\10.2.0\oradata\orcl\TEMP01.dbf’
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;

//データ表スペースを作成
create tablespace ${tablespacename}
logging
datafile 'D:\oracle\product\10.2.0\oradata\orcl\WPS01.dbf’
size 2000m
autoextend on
next 500m
maxsize 2048m –指定しなくてもいい
extent management local;

//ユーザーを作成し、表スペースを指定
create user ${username} identified by ${password}
default tablespace ${tablespacename}
temporary tablespace ${temptablespacename};

//ユーザーに権限を与える
grant connect,resource to ${username};

alter tablespace ${tablespacename}
add datafile 'D:\oracle\product\10.2.0\oradata\orcl\WPS02.dbf’ size 2000m autoextend on next 1000m,
'D:\oracle\product\10.2.0\oradata\orcl\WPS03.dbf’ size 2000m autoextend on next 1000m;

DataBase

Posted by arkgame