oracle create tablespace autoextend

Solutions on MaxInterview for oracle create tablespace autoextend by the best coders in the world

showing results for - "oracle create tablespace autoextend"
Oonagh
21 Nov 2019
1CREATE TABLESPACE tablespace_name DATAFILE 'my_file.dbf' SIZE 30G AUTOEXTEND ON;
Calie
09 Feb 2017
1SELECT FILE_NAME, TABLESPACE_NAME, AUTOEXTENSIBLE
2FROM DBA_DATA_FILES WHERE AUTOEXTENSIBLE = 'YES'
3ORDER BY TABLESPACE_NAME, FILE_NAME;