Want to create tablespace in linux which handle any sort of data?
If you creating any Production environment, Please do create your own tablespace and assign users for that tablespace
Here is the query for you
CREATE TABLESPACE oracle DATAFILE
'/oracle/obi_tablespace/oracle.dbf' SIZE 31G AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED
LOGGING
PERMANENT
EXTENT MANAGEMENT LOCAL AUTOALLOCATE
BLOCKSIZE 8K
SEGMENT SPACE MANAGEMENT AUTO;
Comments
Post a Comment