Hello Fidel ,
Then we can try to add new TEMP file and remove the old one instead of so we can change TEMP Tablespace size after that
- Connect to SQLPLUS via SYSDBA authorization.
- RUN following syntax for creating new TEMPFILE with value of 1000MB
alter tablespace temptablespace add tempfile ‘’ size 1000M autoextend on;
example ;
alter tablespace PSAPTEMP add tempfile ‘G:\ORACLE\SID\SAPDATA1\TEMP_10\TEMP.DATA10′ size 1000M autoextend on;
Drop TEMPFILE procedure
- Connect to SQLPLUS via SYSDBA authorization.
- RUN following syntax for first getting OFFLINE to releated TEMPFILE and then DROP with releated Datafiles on OS level
alter database tempfile ‘disk location of TEMPFILE ’ offline ;
alter database tempfile ‘disk location of TEMPFILE ’ drop including datafiles;
example ;
alter database tempfile ‘G:\ORACLE\SID\SAPDATA1\TEMP_10\TEMP.DATA10′ offline;
alter database tempfile ‘G:\ORACLE\SID\SAPDATA1\TEMP_10\TEMP.DATA10′ drop including datafiles;
I hope it helps...