Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> SOLVED: Re: Maxlogfiles, maxlogmembers, maxdatafiles... etc.

SOLVED: Re: Maxlogfiles, maxlogmembers, maxdatafiles... etc.

From: Tom Tyson <tomtysonjr_at_yahoo.com>
Date: Wed, 20 Sep 2000 12:24:54 -0700 (PDT)
Message-Id: <10625.117490@fatcity.com>


Found the answer on MetaLink.. here is the info for all that is interested:

PURPOSE



This bulletin describes where to find information about following controlfile parameters in the data dictionary: SCOPE & APPLICATION

This article is intended for all Oracle DBA's.

RELATED DOCUMENTS



Oracle8 Reference Release 8.0
[NOTE:1038348.6] Additions to the data dictionary views [NOTE:1066346.6] Is MAXLOGHISTORY etc available from X$ tables at all?

The values of MAXLOGFILES, MAXLOGMEMBERS, MAXDATAFILES, MAXINSTANCES and MAXLOGHISTORY are set either during CREATE DATABASE, or CREATE CONTROLFILE. In all Oracle versions, the CREATE CONTROLFILE syntax can be regenerated from the data dictionary using 'ALTER DATABASE BACKUP CONTROLFILE TO TRACE;'. The resulting tracefile will contain the current MAX values for the database. Refer to [NOTE:1012929.6] for additional information.

Using queries against v$controlfile_record_section and x$kccdi the control file parameters can be retrieved direct from an Oracle8 data dictionary.

SVRMGR> select TYPE,RECORDS_TOTAL from v$controlfile_record_section;

TYPE RECORDS_TO

REDO LOG                  32      --> MAXLOGFILES                              
   
DATAFILE                  30      --> MAXDATAFILES  
DATABASE                   1      --> MAXINSTANCES                             
 
LOG HISTORY             3317      --> MAXLOGHISTORY


MAXLOGMEMBERS:


MAXLOGMEMBERS is available via "x$kccdi.dimlm". Refer to [NOTE:1066346.6]. .


Do You Yahoo!? Received on Wed Sep 20 2000 - 14:24:54 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US