ADD Datafile in Tablespace ASM
COMMAND
alter tablespace <tablespace_name> add datafile '<disk group name>' size <size of a file> autoextend on next 50M maxsize unlimited;
Example
alter tablespace APPS_TS_TX_DATA add datafile '+DATAC1' size 2G AUTOEXTEND ON NEXT 50M MAXSIZE UNLIMITED;
alter tablespace <tablespace_name> add datafile '<disk group name>' size <size of a file> autoextend on next 50M maxsize unlimited;
Example
alter tablespace APPS_TS_TX_DATA add datafile '+DATAC1' size 2G AUTOEXTEND ON NEXT 50M MAXSIZE UNLIMITED;
Very well explained. Thanks for sharing proper steps. I was looking to extend tablespace size which really helps.
ReplyDelete