Simple Query on Table with Billions of rows getting ORA-01652 [message #690044] |
Wed, 25 September 2024 13:27  |
wtolentino
Messages: 422 Registered: March 2005
|
Senior Member |
|
|
A simple query on a table with billions of rows is getting an error:
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
TEMP tablespace has 3 datafile and each has a maxsize of 32003mb. Currently no other session is active or is connected to the same database.
This query completes without error:
select count(*) cnt from TRANSACTION_tab;
Please advise thank you.
This query throws an error ORA-01652:
select * from TRANSACTION_tab describe trans_dt desc;
|
|
|
|
|
|
|
|
|
|
|
|
|