Created
July 14, 2014 08:10
-
-
Save mpfund/c70faec011198fae7324 to your computer and use it in GitHub Desktop.
Oracle Exception 01652 "unable to extend temp segement" & fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oracle Exception: | |
{"ORA-01652: unable to extend temp segment by 2048 in tablespace TS_TEMP"} | |
Fix: | |
SELECT file_name, tablespace_name, ROUND(bytes/1024000) MB | |
FROM dba_data_files | |
ORDER BY 1; | |
alter tablespace ts_temp add TEMPFILE 'C:\app\inloox_oracle\product\12.1.0\dbhome_2\database\TEMP04.dbf' size 2000M autoextend on; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment