You can create a tablespace by using create tablespace command:
Syntax:
Create tablespace tablespace_name
datafile 'file_name' size 10m
autoextent on next 5m maxsize 200m;
We recommend that you include the following in the datafile name when you create the tablespace:
- The name of the database
- The name of the tablespace
- A number that makes the datafile unique
create tablespace tbs
datafile '/opt/luck/tbs01.dbf ' size 100m
autoextend on next 5m maxsize 200m;
0 comments:
Post a Comment