Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Q: inc. size of temp tablespace
Why when I do this I get an error:
SQL> alter database datafile '/oracle/SND/sapdata1/temp/temp1.data'
resize 200M;
alter database datafile '/oracle/SND/sapdata1/temp/temp1.data' resize
200M
*
ERROR at line 1:
ORA-01516: nonexistent log file, datafile, or tempfile
"/oracle/SND/sapdata1/temp/temp1.data"
when the file and the path exists?
sapsnd:orasnd 32> pwd
/oracle/SND/sapdata1/temp
sapsnd:orasnd 33> ls -lt
total 200848
-rw-rw-rw- 1 orasnd dba 104865792 Jun 7 15:41 temp1.data
Here is what I am running:
SQL> select * from v$version;
BANNER
In other words, what is the easiest way to increase the size of the temporary tablespace?
Thanks!
Vince
p.s. Tried:
SQL> alter tablespace psaptemp1
2 add datafile '/oracle/SND/sapdata1/temp/temp1.data2' size 200M;
alter tablespace psaptemp1
*
ERROR at line 1:
ORA-03217: invalid option for alter of TEMPORARY TABLESPACE
Received on Mon Jun 07 2004 - 15:55:58 CDT