Unix Technical Forum

9i RAC failover/scalable doesn`t happen

This is a discussion on 9i RAC failover/scalable doesn`t happen within the Oracle Database forums, part of the Database Server Software category; --> Folks, My RAC setup as follows... * Solaris 9 * SC 3.1(UP5) * SVM (Multiowner diskset) * Raw file ...


Go Back   Unix Technical Forum > Database Server Software > Oracle Database

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-25-2008, 04:18 AM
unknown
 
Posts: n/a
Default 9i RAC failover/scalable doesn`t happen

Folks,
My RAC setup as follows...

* Solaris 9
* SC 3.1(UP5)
* SVM (Multiowner diskset)
* Raw file
* oracle 9201
I configured two instances sai1,sai2 running on rac1 and rac2
respectively. I have configured the resource group for rac
framework,udlm and svm.

I am not an oracle guy,just picked up some document explaining the RAC
testing and I did as it is stated...but the failover doesn`t happen.

Testing............

1)rac1#srvctl status database sai
sai1 running on node rac1
sai2 running on node rac2

2)rac1# sql>select * from emp; (Have about 100000 records)
** Records start scrolling......

3)rac2#srvctl stop instance -d sai -i sai1

4)rac1# scrolling of record stop..shows the following message
ORA-01089
ORA-12571

The failover doesn`t happen......My tnsnames.ora is given below

# TNSNAMES.ORA Network Configuration File:
/u01/app/oracle/product/9201/network/
# Generated by Oracle configuration tools.
SAI2 =
(description=
(address=(protocol=tcp)(host=rac2)(port=1521))
(connect_data=(service_name=sai.ftpl.com))
)

LISTENER_SAI2 =
(description=
(address=(protocol=tcp)(host=rac2)(port=1521))
(connect_data=(service_name=sai.ftpl.com))
)

SAI1 =
(description=
(address=(protocol=tcp)(host=rac1)(port=1521))
(connect_data=(service_name=sai.ftpl.com))
)

LISTENER_SAI1 =
(description=
(address=(protocol=tcp)(host=rac1)(port=1521))
(connect_data=(service_name=sai.ftpl.com))
)

SAI =
(DESCRIPTION =
(ADDRESS_LIST =
(LOAD_BALANCE=ON)
(FAILOVER=ON)
(ADDRESS=(PROTOCOL=TCP) (HOST = rac1) (PORT = 1521))
(ADDRESS=(PROTOCOL=TCP) (HOST = rac2) (PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = sai.ftpl..com)
(FAILOVER_MODE= (TYPE=SELECT) (METHOD=BASIC)
)
)
)

LISTENERS_SAI =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = rac1)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = rac2)(PORT = 1521))
(LOAD_BALANCE = yes)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = sai.ftpl.com)
)
)

any help would be appreciated

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-25-2008, 04:18 AM
stevedhoward@gmail.com
 
Posts: n/a
Default Re: 9i RAC failover/scalable doesn`t happen

Did you cut and paste this?

>> (SERVICE_NAME = sai.ftpl..com) <<


Regards,

Steve

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-25-2008, 04:19 AM
takesiro
 
Posts: n/a
Default Re: 9i RAC failover/scalable doesn`t happen

Hi!
I have a question.
Did you make a TNS_CONNECTION with TAF policy?

If you didn't, your situation is correct.
Probaby like following.

<NO TAF policy>
1. RAC1 connnct
2. select a lot
3. RAC1 fail
4. connection end of connection.
5. Retry connct
6. connect RAC2 with same TNS

<TAF policy>
1. RAC1 connnct
2. select a lot
3. RAC1 fail
4. connection transparent to RAC2.
5. result select

Please read TAF(Transparent Apllication failover) in RAC guid.

regards.
"unknown" <govindo@gmail.com> wrote in message
news:1147101293.528050.234340@e56g2000cwe.googlegr oups.com...
> Folks,
> My RAC setup as follows...
>
> * Solaris 9
> * SC 3.1(UP5)
> * SVM (Multiowner diskset)
> * Raw file
> * oracle 9201
> I configured two instances sai1,sai2 running on rac1 and rac2
> respectively. I have configured the resource group for rac
> framework,udlm and svm.
>
> I am not an oracle guy,just picked up some document explaining the RAC
> testing and I did as it is stated...but the failover doesn`t happen.
>
> Testing............
>
> 1)rac1#srvctl status database sai
> sai1 running on node rac1
> sai2 running on node rac2
>
> 2)rac1# sql>select * from emp; (Have about 100000 records)
> ** Records start scrolling......
>
> 3)rac2#srvctl stop instance -d sai -i sai1
>
> 4)rac1# scrolling of record stop..shows the following message
> ORA-01089
> ORA-12571
>
> The failover doesn`t happen......My tnsnames.ora is given below
>
> # TNSNAMES.ORA Network Configuration File:
> /u01/app/oracle/product/9201/network/
> # Generated by Oracle configuration tools.
> SAI2 =
> (description=
> (address=(protocol=tcp)(host=rac2)(port=1521))
> (connect_data=(service_name=sai.ftpl.com))
> )
>
> LISTENER_SAI2 =
> (description=
> (address=(protocol=tcp)(host=rac2)(port=1521))
> (connect_data=(service_name=sai.ftpl.com))
> )
>
> SAI1 =
> (description=
> (address=(protocol=tcp)(host=rac1)(port=1521))
> (connect_data=(service_name=sai.ftpl.com))
> )
>
> LISTENER_SAI1 =
> (description=
> (address=(protocol=tcp)(host=rac1)(port=1521))
> (connect_data=(service_name=sai.ftpl.com))
> )
>
> SAI =
> (DESCRIPTION =
> (ADDRESS_LIST =
> (LOAD_BALANCE=ON)
> (FAILOVER=ON)
> (ADDRESS=(PROTOCOL=TCP) (HOST = rac1) (PORT = 1521))
> (ADDRESS=(PROTOCOL=TCP) (HOST = rac2) (PORT = 1521))
> )
> (CONNECT_DATA =
> (SERVICE_NAME = sai.ftpl..com)
> (FAILOVER_MODE= (TYPE=SELECT) (METHOD=BASIC)
> )
> )
> )
>
> LISTENERS_SAI =
> (DESCRIPTION =
> (ADDRESS = (PROTOCOL = TCP)(HOST = rac1)(PORT = 1521))
> (ADDRESS = (PROTOCOL = TCP)(HOST = rac2)(PORT = 1521))
> (LOAD_BALANCE = yes)
> (CONNECT_DATA =
> (SERVER = DEDICATED)
> (SERVICE_NAME = sai.ftpl.com)
> )
> )
>
> any help would be appreciated
>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 01:49 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com