alter tablespace add datafile autoextend

Solutions on MaxInterview for alter tablespace add datafile autoextend by the best coders in the world

showing results for - "alter tablespace add datafile autoextend"
Emelie
16 Jun 2018
1SELECT * FROM DBA_DATA_FILES WHERE TABLESPACE_NAME = 'my_tbs' ORDER BY FILE_NAME;
2
3ALTER TABLESPACE my_tbs ADD DATAFILE '/path/to/my_file.dbf' 
4	SIZE 100M AUTOEXTEND OFF;
5-- Autoextend with max size:
6ALTER TABLESPACE my_tbs ADD DATAFILE '/path/to/my_file.dbf' 
7	SIZE 10G AUTOEXTEND ON NEXT 1G MAXSIZE 32000M;    
8-- For TEMP tablespace:
9ALTER TABLESPACE my_tbs ADD TEMPFILE '/path/to/my_file.dbf' 
10	SIZE 100M AUTOEXTEND OFF;