Check the table space and table size in the oracle database today. It seems that the table space is too large. Find the following information and first query the space occupied BY the TABLE. Use the following statement: SQL code SELECT SEGMENT_NAME, SUM (BYTES)/1024/1024 MBYTESE FROM USER_SEGMENTS WHERE SEGMENT_TYPE = 'table' GROUP BY SEGMENT_NAME; alternatively, when the SQL code Select Segment_Name, Sum (bytes)/1024/1024 as sizeof From User_Extents Group By Segment_Name order by sizeof desc deletes full table data in a large amount of data, using truncate tabletruncate table will release the tablespace. To delete a table, you need to alter tablespace *** COALESCE; only when the spatial truncate table has no transaction concept, and the data is completely cleared after execution. Truncate will return highwatermark to 0. Now it will be faster when new records are inserted again. Truncate table Index will also be deleted, not the drop index. Note: deleting data cannot reduce the tablespace, but it is more reusable. to reduce the size of the table and make it available to the operating system, you need to move the table tablespace to the original tablespace and then narrow down the tablespace. example: alter table your_table move tablespace yourtablespace;