Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ORA-01652: unable to extend temp segment by 128 in tablespace SYSTEM: How to extend?

I have a large Oracle table, which contains 542512 rows. It has three columns and when I try to create an index for it with the following command:

  CREATE INDEX FTS_INDEX ON FILTERED_TEKLI_IIS_TABLOSU (ilAdi,ilceAdi,caddeAdi) 

Oracle gives the following error:

SQL Error: ORA-01652: unable to extend temp segment by 128 in tablespace SYSTEM 01652. 00000 -  "unable to extend temp segment by %s in tablespace %s" *Cause:    Failed to allocate an extent of the required number of blocks for        a temporary segment in the tablespace indicated. *Action:   Use ALTER TABLESPACE ADD DATAFILE statement to add one or more        files to the tablespace indicated. 

I searched for this error and found that it is produced when Oracle hasn't enough space to store intermediate data when executing operations like joining tables, creating indices etc. on large tables. But I did not found a clear solution for this. These ALTER TABLESPACE and ADD DATAFILE commands seem to do the job, but I am not sure how to call these and with which parameters. Any help would be appreciated.

like image 756
Ufuk Can Bicici Avatar asked Aug 17 '14 15:08

Ufuk Can Bicici


People also ask

How do I fix error ORA-01652?

Question: What is the cause of the ORA-01652 error? Cause: Failed to allocate an extent of the required number of blocks for a temporary segment in the tablespace indicated. Action: Use ALTER TABLESPACE ADD DATAFILE statement to add one or more files to the tablespace indicated.

How do I resize temp tablespace?

If the temporary tablespace you want to shrink is your default temporary tablespace, you will have to first create a new temporary tablespace, set it as the default temporary tablespace then drop your old default temporary tablespace and recreate it. Afterwords drop the second temporary table created.


1 Answers

Each tablespace has one or more datafiles that it uses to store data.

The max size of a datafile depends on the block size of the database. I believe that, by default, that leaves with you with a max of 32gb per datafile.

To find out if the actual limit is 32gb, run the following:

select value from v$parameter where name = 'db_block_size'; 

Compare the result you get with the first column below, and that will indicate what your max datafile size is.

I have Oracle Personal Edition 11g r2 and in a default install it had an 8,192 block size (32gb per data file).

Block Sz   Max Datafile Sz (Gb)   Max DB Sz (Tb)  --------   --------------------   --------------     2,048                  8,192          524,264     4,096                 16,384        1,048,528     8,192                 32,768        2,097,056    16,384                 65,536        4,194,112    32,768                131,072        8,388,224 

You can run this query to find what datafiles you have, what tablespaces they are associated with, and what you've currrently set the max file size to (which cannot exceed the aforementioned 32gb):

select bytes/1024/1024 as mb_size,        maxbytes/1024/1024 as maxsize_set,        x.* from   dba_data_files x 

MAXSIZE_SET is the maximum size you've set the datafile to. Also relevant is whether you've set the AUTOEXTEND option to ON (its name does what it implies).

If your datafile has a low max size or autoextend is not on you could simply run:

alter database datafile 'path_to_your_file\that_file.DBF' autoextend on maxsize unlimited; 

However if its size is at/near 32gb an autoextend is on, then yes, you do need another datafile for the tablespace:

alter tablespace system add datafile 'path_to_your_datafiles_folder\name_of_df_you_want.dbf' size 10m autoextend on maxsize unlimited; 
like image 189
Brian DeMilia Avatar answered Sep 20 '22 03:09

Brian DeMilia