RAC DB instance [message #593065] |
Tue, 13 August 2013 18:38 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/15c82c7d9fc8aa37529ca79b866d6993?s=64&d=mm&r=g) |
suhasdba
Messages: 141 Registered: April 2013 Location: INDIA
|
Senior Member |
|
|
Hi ,
Would there be any issue in application and database when i down RAC database instance using below srvctl command ?
srvctl stop instance -d DB -i DB1
srvctl start instance -d DB -i DB1
Thanks
|
|
|
|
|
|
Re: RAC DB instance [message #593227 is a reply to message #593221] |
Thu, 15 August 2013 03:05 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](/forum/images/custom_avatars/102589.gif) |
Michel Cadot
Messages: 68733 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Bounce instance if it is an instance parameter, bounce database if it is a database parameter.
Of course, bounce database means you stop all instances and so all applications whereas if you stop an instance you stop or relocate (and so impact) the sessions of only the instances you bounce.
Regards
Michel
[Edit: add missing "if"]
[Updated on: Thu, 15 August 2013 05:33] Report message to a moderator
|
|
|
|
Re: RAC DB instance [message #593252 is a reply to message #593244] |
Thu, 15 August 2013 05:27 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
suhasdba wrote on Thu, 15 August 2013 10:39Michel,
Well explained.Thank you for that.
Quote:Bounce instance it is an instance parameter, bounce database if it is a database parameter.
Could you list out instance and database parameters in RAC.
Regards, I think you should consider listing them yourself. Look at the ISINSTANCE_MODIFIABLE column of v$parameter.
|
|
|
Re: RAC DB instance [message #593279 is a reply to message #593252] |
Thu, 15 August 2013 08:47 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/15c82c7d9fc8aa37529ca79b866d6993?s=64&d=mm&r=g) |
suhasdba
Messages: 141 Registered: April 2013 Location: INDIA
|
Senior Member |
|
|
John,
As per your suggestion , i queried v$parameter and found the following results .
SQL> select ISINSTANCE_MODIFIABLE from v$parameter;
SQL> /
ISINS
-----
FALSE
FALSE
FALSE
TRUE
TRUE
TRUE
TRUE
TRUE
TRUE
FALSE
FALSE
ISINS
-----
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
FALSE
TRUE
TRUE
TRUE
ISINS
-----
TRUE
FALSE
FALSE
FALSE
There was about 347 rows selected.
from above results could you tell me how to list out instance and database parameters in RAC?
Thanks
[Updated on: Thu, 15 August 2013 08:48] Report message to a moderator
|
|
|
|
|
|
|
|
|
|
|
Re: RAC DB instance [message #593395 is a reply to message #593394] |
Fri, 16 August 2013 06:04 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
John Watson
Messages: 8964 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
Suhas, I think the BS is a few time zones West of us. So I'll try again.
When you first replied to my suggestion that looking at v$parameter.isinstance_modifiable might help you to determine whether a parameter has an instance scope or a database scope, I was astounded that you replied with query that projected just that one column. I ignored it, because I assumed that you were just trying to make people angry by being deliberately obtuse.
But since then, it does appear that you really did not understand. There are two issues: whether a parameter can be changed without restarting anything (issys_modifiable), and whether a parameter can have different values in different instances (isinstance_modifiable).
So start looking up a few parameters in the docs, and you'll be able to work out what is going on.
|
|
|
|
|