Create tablespace in Oracle 11g
Windows 2008 R2 (64-bit OS)
Oracle 11g R2 Standard Edition ONE(64-bit database)
I use the following Oracle command to create tablespace in 11g.
CREATE TABLESPACE TEST_TBS
DATAFILE
'C:\ORACLE\ORADATA\TEST_TBS01.DBF' SIZE 5M
AUTOEXTEND ON NEXT 5M
MAXSIZE 50000M;
- The above command works fine.
Is there any better commands i need to be using in creating a tablespace w.r.t. performance and management.