Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Determinants of control file
All right, Here is the complete query to get the information from the control file.
select
decode (indx, 3,'MAXLOGFILES',4,'MAXDATAFILES',2,'MAXINSTANCES',9,'MAXLOGHISTORY
') , rsnum from x$kccrs
where indx in (3,4,2,9)
union all
select 'MAXLOGMEMBERS ',dimlm from x$kccdi
/
Thanks
Riyaj "Re-yas" Shamsudeen
Certified Oracle DBA
i2 technologies www.i2.com
Riyaj Shamsudeen
12/03/01 09:46 AM
To: ORACLE-L_at_fatcity.com
cc:
Subject: RE: Determinants of control fileLink
Hi
v$controlfile_record_section is based on the fixed table x$kccrs. This does provide values for all the columns except maxlogmembers. Here is the query to pull the information..
select
decode (indx, 3,'MAXLOGFILES',4,'MAXDATAFILES',2,'MAXINSTANCES',9,'MAXLOGHISTORY') , rsnum from x$kccrs
where indx in (3,4,2,9)
/
DECODE(INDX,3 RSNUM
------------- ----------
MAXINSTANCES 8
MAXLOGFILES 32
MAXDATAFILES 1022
MAXLOGHISTORY 907
which is matching with my controlfile dump.
CREATE CONTROLFILE REUSE DATABASE "mydb" NORESETLOGS ARCHIVELOG
MAXLOGFILES 32
MAXLOGMEMBERS 2
MAXDATAFILES 1022
MAXINSTANCES 8
MAXLOGHISTORY 907
I am not sure where maxlogmembers is stored. I will do some more digging to find that..
Thanks
Riyaj "Re-yas" Shamsudeen
Certified Oracle DBA
i2 technologies www.i2.com
Nirmal Kumar Muthu Kumaran <NIRMALK_at_qtel.com.qa>
Sent by: root_at_fatcity.com
12/01/01 08:25 AM
Please respond to ORACLE-L
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
cc:
Subject: RE: Determinants of control file
No..... i already checked the view v$control_record_section,
This view does not provide any information regarding determinants of controlfile like MAXDATAFILES, MAXLOGFILES, etc....
Nirmal.
-----Original Message-----
t size=1 face="Arial">K Gopalakrishnan [SMTP:kaygopal_at_yahoo.com]
Sent: Thursday, November 29, 2001 11:27 PM To: Multiple recipients of list ORACLE-L oman"> RE: Determinants of control fileOther than dumping/ tracing the control file, you can find the required details in the dynamic view V$controlfile_record_section. This view has all the information you want
Use
alter database backup controlfile to trace; You can find these details in the trace file, that will be dumped to your udump destination.
![]() |
![]() |