current value of maxlogmembers [message #165332] |
Wed, 29 March 2006 07:52 |
k_talino
Messages: 9 Registered: January 2006 Location: Spain
|
Junior Member |
|
|
Goodday,
I am looking for a select statement on how to find out, what the current value is of the maxlogmembers in my database.
|
|
|
|
Re: current value of maxlogmembers [message #165339 is a reply to message #165336] |
Wed, 29 March 2006 08:44 |
k_talino
Messages: 9 Registered: January 2006 Location: Spain
|
Junior Member |
|
|
yea, but I am looking for a select statement more or less equal:
Select record_total
from v$controlfile_record_section
where type='REDO LOG'
for MAXLOGFILES
but for MAXLOGMEMBERS
thx
|
|
|
|
Re: current value of maxlogmembers [message #165353 is a reply to message #165349] |
Wed, 29 March 2006 09:28 |
k_talino
Messages: 9 Registered: January 2006 Location: Spain
|
Junior Member |
|
|
Yeaa,,
thx for all
Mahesh Rajendran wrote on Wed, 29 March 2006 09:12 |
sys@9i > select dimlm from x$kccdi;
DIMLM
----------
3
sys@9i > alter database backup controlfile to trace as '/tmp/mytracefile';
Database altered.
sys@9i > !cat /tmp/mytracefile | grep MAXLOGMEMBERS
MAXLOGMEMBERS 3
MAXLOGMEMBERS 3
|
|
|
|
|
Re: current value of maxlogmembers [message #165391 is a reply to message #165380] |
Wed, 29 March 2006 16:38 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
Only after replying, something came to my mind
Oracle Doc says: | Your operating system specific Oracle documentation for the default and legal values of the MAXLOGFILES and MAXLOGMEMBERS parameters
|
But there is not much to guess here about MAXLOGMEMBERS.
There need to be
Minimum 1 (obviously) -all platforms
Default 2 - in most platforms
Maximum 5 - all platforms.
I may be wrong. I haven't checked any docs yet.
[Updated on: Wed, 29 March 2006 18:15] Report message to a moderator
|
|
|
|
|