DBAsupport.com Forums - Powered by vBulletin
Results 1 to 2 of 2

Thread: Standby Database

  1. #1
    Join Date
    Apr 2001
    Location
    Vadodara, India
    Posts
    249

    Standby Database

    Dear All,

    We are planning for DR solution for our Production server.


    We plan to keep secondrary server at remote side where network is different. We have point-to-point connectivity between two sites.


    Now the server name is different at both the site.

    When primary goes down how users are connected to seconday site as secondary server at different network ?



    Regards,

    Nirav

  2. #2
    Join Date
    Jul 2002
    Location
    Lake Worth, FL
    Posts
    1,492

    Cool

    Try something like this:
    Code:
    ORCL=
      (DESCRIPTION=
        (ADDRESS=(PROTOCOL=TCP)(HOST=PrimaryServer)(PORT=1521))
        (ADDRESS=(PROTOCOL=TCP)(HOST=StandbyServer)(PORT=1521))
        (LOAD_BALANCE=yes)
        (FAILOVER_MODE=(TYPE=SELECT)(METHOD=BASIC)(RETRIES=5)(DELAY=1))
        (CONNECT_DATA=(SERVER=DEDICATED)
        (SERVICE_NAME=ORCL.WORLD))
      )
    "The person who says it cannot be done should not interrupt the person doing it." --Chinese Proverb

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width