1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
########################################################################
# Filename......: init.ora - Instance configuration file parameters #
########################################################################
ifile = /app/oracle/admin/oradev1/pfile/configoradev1.ora
###########################################
# File Configuration
###########################################
control_files = (/oradata/oradev1/control01.ctl,
/oradata/oradev1/control02.ctl)
###########################################
# Cache and I/O
###########################################
db_2k_cache_size=0
#db_4k_cache_size=0
db_8k_cache_size=0
db_16k_cache_size=0
#buffer_pool_keep=""
#buffer_pool_recycle=""
db_block_size=4096
db_cache_size=150M
db_file_multiblock_read_count=32 #nb block lu en une passe. stripe_size=128Ko
#db_writer_processes=1
###########################################
# Asynch I/O + Direct I/O
###########################################
#disk_asynch_io=true
#filesystemio_options=setall
#filesystemio_options=asynch
###########################################
# Pools
###########################################
java_pool_size=0
large_pool_size=8388608
shared_pool_size=50M
###########################################
# System Managed Undo and Rollback Segments
###########################################
undo_management=AUTO
undo_retention=3600
undo_tablespace=UNDOTBS1
undo_suppress_errors=TRUE
###########################################
# Processes and Sessions
###########################################
processes = 100
###########################################
# Cursors and Library Cache
###########################################
open_cursors = 1000
###########################################
# Redo Log and Recovery
###########################################
fast_start_mttr_target=300 #nombre esti de sec souhait pour la recup d'une instance
log_buffer=524288
log_checkpoint_interval=0
archive_lag_target = 3600 #switch au bout d1 heure si pas d'activite
###########################################
# Sort, Hash Joins, Bitmap Indexes
###########################################
#hash_area_size=262144
#sort_area_size=524288 #pour Tbs TEMP: une taille minimale d allocation = sort_area_size + 1 bloc
#sort_area_retained_size = 262144
pga_aggregate_target=50M #reglage automatique des zones de travail
workarea_size_policy=AUTO
###########################################
# Optimizer
###########################################
hash_join_enabled=TRUE
query_rewrite_enabled=FALSE #active la reecriture des interrogations pour les vues materialisees.
star_transformation_enabled=FALSE
timed_statistics=TRUE
optimizer_features_enable=9.2.0
optimizer_mode=CHOOSE
###########################################
# Transactions
###########################################
dml_locks=164
enqueue_resources=384
###########################################
# Archive
###########################################
#log_archive_dest_1='LOCATION=/oradata/oradev1/archive mandatory'
#log_archive_start=true
log_archive_format = %T_%S.arc
#log_checkpoint_interval = 10000
#log_checkpoint_timeout = 1800
#log_simultaneous_copies = 2 * ( nbre CPU )
###########################################
# Parallel Query
###########################################
parallel_max_servers = 128
parallel_min_servers = 0
###########################################
# Distributed, Replication and Snapshot
###########################################
open_links_per_instance=4
#distributed_transactions = 10
job_queue_processes = 1
#open_links = 4
###########################################
# MultiThreaded Server
###########################################
#mts_dispatchers = "(protocol=TCP)(DISP=1)(mul=OFF)(pool=OFF)"
#mts_max_dispatchers = 5
#mts_servers = 1
#mts_max_servers = 20
###########################################
# global activation trace
###########################################
#SQL_TRACE=TRUE |