/ Published in: SQL
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
Expand |
Embed | Plain Text
-- ORA-01652: unable to extend temp segment by 128 in tablespace TEMP SELECT tablespace_name, bytes_used, bytes_free FROM v$temp_space_header; SELECT tablespace_name, file_name, bytes FROM dba_temp_files WHERE tablespace_name = 'TEMP'; ALTER DATABASE TEMPFILE '/oradata/DBNAME/temp_01.dbf' resize 2G;
You need to login to post a comment.
