cancel
Showing results for 
Search instead for 
Did you mean: 

Table deletion and creation

Former Member
0 Kudos

Hello gurus ,

We have 2 table's occupied 70 gb , planning to delete the tables using se14 and recreate

/CWLD/LOG_HEADER

/CWLD/LOG_ITEM

is it good advice to do so its development system and need to do re-organization for table to get free space back.?

Please suggest

Bestregards

Vamsi

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Is the database Oracle, then try to use Truncate if you want to just delte the data inside the Table rather than Dropping and recreate it.

SQL> TRUNCATE TABLE CWLD/LOG_HEADER,

/CWLD/LOG_ITEM

;

Table truncated.

You can reorganize after you have performed the above action.

Thanks

SM

Answers (0)