This is the existing TEMP tablespace create statement
CREATE TEMPORARY TABLESPACE TEMP TEMPFILE
'file1' SIZE 2040K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M,
'file2' SIZE 2040K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M,
'file3' SIZE 527352K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M,
'file4' SIZE 2040K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M,
'file5'. SIZE 2040K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M
TABLESPACE GROUP ''
EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;
I want to add a file 'file6'
The database is 11g
I want a symtax for adding a new datafile 'file6'
Thanks very much
alter tablespace temp add tempfile 'file5' SIZE 2040K AUTOEXTEND ON NEXT 512M MAXSIZE 20480M tablespace group '' EXTENT MANAGEMENT LOCAL UNIFORM SIZE 1M;