View Single Post
  #1 (permalink)  
Old September 17th, 2007, 04:18
chrisplough's Avatar
chrisplough chrisplough is offline
Site Moderator
 
Join Date: Jun 2006
Location: West Chester, PA
Posts: 821
Blog Entries: 7
Thanks: 53
Thanked 201 Times in 121 Posts
Groans: 0
Groaned at 0 Times in 0 Posts
Rep Power: 10
chrisplough has a spectacular aura aboutchrisplough has a spectacular aura aboutchrisplough has a spectacular aura about
Send a message via AIM to chrisplough
[INSTRUCTIONS] Default Settings for New OTM DB

All,

Based on the OTM Admin Guide and some advice from an old G-Log friend (who did at ton of the DB development and performance work for GC3!), the following non-standard parameters are recommended for use with your new OTM v5.5 database

Note: I always recommend reviewing changes like this with a DBA that you trust. Please don't make these blindly and realize that the MAY NOT WORK FOR YOU.

Oracle 10gR2 - 10.2.0.3:
Code:
sga_target=2147483648
pga_aggregate_target=536870912
log_buffer=163840
sort_area_size=1048576
sort_area_retained_size=1048576
optimizer_mode='CHOOSE'
optimizer_index_cost_adj=50
optimizer_index_caching=50
statistics_level='ALL'
query_rewrite_enabled=TRUE
query_rewrite_integrity='trusted'
workarea_size_policy='AUTO'
Some of these may override your current settings, so ensure that you check your existing init file and replace/update any settings as necessary. To create a new init file, based on your current configuration, login to your DB as SYSDBA and run:
Code:
CREATE PFILE FROM SPFILE;
The shutdown your DB, and edit your init file. To apply these settings after editing your init file (my preferred way, but there are several others) - login to your DB as SYSDBA and run the following:
Code:
STARTUP PFILE='/u02/app/ora10g/product/10.2/tmsprd/dbs/initTMSPRDDB10G.ora'
CREATE SPFILE FROM PFILE;
Restart your DB one more time, just to be sure, and you're done.

Hope this helps!

--Chris
__________________
Chris Plough
MavenWire

www.MavenWire.com
Reply With Quote