home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a525 / 56.ddi / INIT.ORA < prev    next >
Encoding:
Text File  |  1993-02-24  |  7.0 KB  |  146 lines

  1. #
  2. # $Header: init.ora 7001200.1 92/11/03 17:27:56 twang Generic<base> $
  3. #
  4. # Copyright (c) 1991 by Oracle Corporation
  5. # NAME
  6. #   init.ora
  7. # FUNCTION
  8. # NOTES
  9. # MODIFIED
  10. #     maporter   10/29/92 -  Add vms_sga_use_gblpagfile=TRUE
  11. #     jloaiza    03/07/92 -  change ALPHA to BETA
  12. #     danderso   02/26/92 -  change db_block_cache_protect to _db_block_cache_p
  13. #     ghallmar   02/03/92 -  db_directory -> db_domain
  14. #     maporter   01/12/92 -  merge changes from branch 1.8.308.1
  15. #     maporter   12/21/91 -  bug 76493: Add control_files parameter
  16. #     wbridge    12/03/91 -  use of %c in archive format is discouraged
  17. #     ghallmar   12/02/91 -  add global_names=true, db_directory=us.acme.com
  18. #     thayes     11/27/91 -  Change default for cache_clone
  19. #     jloaiza    08/13/91 -         merge changes from branch 1.7.100.1
  20. #     jloaiza    07/31/91 -         add debug stuff
  21. #     rlim       04/29/91 -         removal of char_is_varchar2
  22. #   Bridge     03/12/91 - log_allocation no longer exists
  23. #   Wijaya     02/05/91 - remove obsolete parameters
  24. #
  25. ##############################################################################
  26. # Example INIT.ORA file
  27. #
  28. # This file is provided by Oracle Corporation to help you customize
  29. # your RDBMS installation for your site.  Important system parameters
  30. # are discussed, and example settings given.
  31. #
  32. # Some parameter settings are generic to any size installation.
  33. # For parameters that require different values in different size
  34. # installations, three scenarios have been provided: SMALL, MEDIUM
  35. # and LARGE.  Any parameter that needs to be tuned according to
  36. # installation size will have three settings, each one commented
  37. # according to installation size.
  38. #
  39. # Use the following table to approximate the SGA size needed for the
  40. # three scenarious provided in this file:
  41. #
  42. #                     -------Installation/Database Size------
  43. #                      SMALL           MEDIUM           LARGE
  44. #  Block         2K    4500K            6800K           17000K
  45. #  Size          4K    5500K            8800K           21000K
  46. #
  47. # To set up a database that multiple instances will be using, place
  48. # all instance-specific parameters in one file, and then have all
  49. # of these files point to a master file using the IFILE command.
  50. # This way, when you change a public
  51. # parameter, it will automatically change on all instances.  This is
  52. # necessary, since all instances must run with the same value for many
  53. # parameters. For example, if you choose to use private rollback segments,
  54. # these must be specified in different files, but since all gc_*
  55. # parameters must be the same on all instances, they should be in one file.
  56. #
  57. # INSTRUCTIONS: Edit this file and the other INIT files it calls for
  58. # your site, either by using the values provided here or by providing
  59. # your own.  Then place an IFILE= line into each instance-specific
  60. # INIT file that points at this file.
  61. ###############################################################################
  62.  
  63. db_file_multiblock_read_count = 8                                     # SMALL
  64. # db_file_multiblock_read_count = 16                                  # MEDIUM
  65. # db_file_multiblock_read_count = 32                                  # LARGE
  66.  
  67. db_block_buffers = 60                                                 # SMALL
  68. # db_block_buffers = 550                                              # MEDIUM
  69. # db_block_buffers = 3200                                             # LARGE
  70.  
  71. shared_pool_size = 3500000                                            # SMALL
  72. # shared_pool_size = 5000000                                          # MEDIUM
  73. # shared_pool_size = 9000000                                          # LARGE
  74.  
  75. log_checkpoint_interval = 10000
  76.  
  77. processes = 50                                                        # SMALL
  78. # processes = 100                                                     # MEDIUM
  79. # processes = 200                                                     # LARGE
  80.  
  81. dml_locks = 100                                                       # SMALL
  82. # dml_locks = 200                                                     # MEDIUM
  83. # dml_locks = 500                                                     # LARGE
  84.  
  85. log_buffer = 8192                                                     # SMALL
  86. # log_buffer = 32768                                                  # MEDIUM
  87. # log_buffer = 163840                                                 # LARGE
  88.  
  89. sequence_cache_entries = 10                                           # SMALL
  90. # sequence_cache_entries = 30                                         # MEDIUM
  91. # sequence_cache_entries = 100                                        # LARGE
  92.  
  93. sequence_cache_hash_buckets = 10                                      # SMALL
  94. # sequence_cache_hash_buckets = 23                                    # MEDIUM
  95. # sequence_cache_hash_buckets = 89                                    # LARGE
  96.  
  97. # audit_trail = true            # if you want auditing
  98. # timed_statistics = true       # if you want timed statistics
  99. max_dump_file_size = 10240      # limit trace file size to 5 Meg each
  100.  
  101. # log_archive_start = true      # if you want automatic archiving
  102. # log_archive_dest = %RDBMS70%\arcs\  #
  103. # log_archive_format = "ARC%S.%T"
  104.  
  105. # If using private rollback segments, place lines of the following
  106. # form in each of your instance-specific init.ora files:
  107. # rollback_segments = (name1, name2)
  108.  
  109. # If using public rollback segments, define how many
  110. # rollback segments each instance will pick up, using the formula
  111. #   # of rollback segments = transactions / transactions_per_rollback_segment
  112. # In this example each instance will grab 40/10 = 4:
  113. # transactions = 40
  114. # transactions_per_rollback_segment = 10
  115.  
  116. # Global Naming -- enforce that a dblink has same name as the db it connects to
  117. global_names = TRUE
  118.  
  119. # Edit and uncomment the following line to provide the suffix that will be
  120. # appended to the db_name parameter (separated with a dot) and stored as the
  121. # global database name when a database is created.  If your site uses
  122. # Internet Domain names for e-mail, then the part of your e-mail address after
  123. # the '@' is a good candidate for this parameter value.
  124.  
  125. # db_domain = us.acme.com       # global database name is db_name.db_domain
  126.  
  127. # FOR DEVELOPMENT ONLY, DEFAULT TO SINGLE-PROCESS
  128. # single_process = TRUE
  129.  
  130. # FOR BETA RELEASE ONLY.  Enable debugging modes.  Note that these can
  131. # adversely affect performance.  On some non-VMS ports the db_block_cache_*
  132. # debugging modes have a severe effect on performance.
  133.  
  134. # _db_block_cache_protect = true                       # memory protect buffers
  135. # event = "10210 trace name context forever, level 2" # data block checking
  136. # event = "10211 trace name context forever, level 2" # index block checking
  137. # event = "10235 trace name context forever, level 1" # memory heap checking
  138. # event = "10049 trace name context forever, level 2" # memory protect cursors
  139.  
  140. # define directories to store trace and alert files
  141. background_dump_dest=%RDBMS70%\trace
  142. user_dump_dest=%RDBMS70%\trace
  143.  
  144. db_name = oracle
  145.  
  146.