Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

tuning performance of disk sorts (imp)

Status
Not open for further replies.
Joined
Jul 25, 2000
Messages
227
Location
US
dudes/dudettes,

I am in the process of migrating some legacy 8.1.7.4 databases to 10.1.x. it looks like my bottleneck is creating indexes (disk sorts) after the rows are imported.

are there parameters you can tweak to squeeze this or is pretty much limited by your storage subsystem?
 
DBA-Duder,

I suggest your boosting your "sort_area_size" to the largest number you can afford. This causes more of the index sorts to occur in memory, which is the best tuning thing you can do for sorts.

Once you've done that, and since your migration is a one-time shot (hopefully), then you sit back and enjoy (...It's not something that occurs daily, so it's not a big deal.)

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[ Providing low-cost remote Database Admin services]
Click here to join Utah Oracle Users Group on Tek-Tips if you use Oracle in Utah USA.
 
In case your WORKAREA_SIZE_POLICY is set to AUTO tweak PGA_AGGREGATE_TARGET instead, as SORT_AREA_SIZE is no longer used then.
In case you use SORT_AREA_SIZE also set SORT_AREA_RETAINED_SIZE to the same value.

Good luck with your migration!

Stefan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top