Thursday, August 18, 2016

Reorganising tablespaces using EXP/IMP

We have many approaches to perform reorganising tablespaces to claim unused space in datafiles. Here in this article, will show you reorganising tablespaces with using EXP/IMP method.

There are number of scenarios that can lead to unused space in datafiles.
The most common I see are - One or more tables/indexes are truncated/deleted huge records from tables, during that time leaving empty areas in the datafiles that previously accommodated them.

Please remember, take backup before you perform reorganising a tablespace because its a big structural change.

Follow below DEMO for reorganising tablespaces using EXP/IMP method:

Step 1: Create new tablespace 'reorg_ts'  and and user 'reorg_user'.  Also create two dummy tables and insert some bunch of records to that tables. After that gather the tables statistics.




Step 2:  Now we can see both table segments are made up of multiple extents, each extent being made up of multiple blocks.



Step 3: Connect to reorg_user and truncate the REORG_T1 table.


Step 4: Even after truncated the REORG_T1 table, there is no difference on REORG_TS tablespace size and also tried to resize the datafile.


Step 5: Here we can see REORG_TS tablespace with lots of free space. For tablespaces with autoextend enabled, the script calculates the maximum sizes the datafiles can grow to, but the "FREE_MB" column is based on the current file size, so use that figure for tablespaces with datafiles set to autoextend. If we switch off autoextend for the relevant datafile, the output will look more clear.


Step 6: Now start with Export/Import process:

  • Create directory object for the export and import to work
  • Export the REORG_USER schema
  • Drop the REORG_USER
  • Resize the datafile to 5MB
  • Import the REORG_USER schema




Now we can see the size of the datafile has been reduced from 58M to 29M.



Thats it. Hope this article will help you :)

Thanks,
Chowdari          

No comments:

Post a Comment

Some Most Popular Articles