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

Thread: Please advice!

  1. #1
    Join Date
    Jul 2000
    Posts
    147

    Please advice!

    Linux Redhat 8 and Oracle 8i or 9i.

    I have to build a failover server in read/write environment automatically in
    the event of a system failure. This application being business critical,
    we would like to have a complete and synchronous on another database located
    at another site (the 2 sites are linked via t1).

    There would be only one master, and we would have to
    switch automatically to the alternate database in case of problem.

    I was hoping that you could share
    your experiences and approaches to this problem.

    Thanks!
    Last edited by dba_dada; 11-26-2002 at 09:52 AM.

  2. #2
    Join Date
    Jan 2002
    Location
    Up s**t creek
    Posts
    1,525
    If you need to have read/write access to both databases then your only option is replication. If you are simply looking for a hot standby solution then you can use Oracle Dataguard.

    regards
    Jim
    Oracle Certified Professional
    "Build your reputation by helping other people build theirs."

    "Sarcasm may be the lowest form of wit but its still funny"

    Click HERE to vist my website!

  3. #3
    Join Date
    Jan 2002
    Location
    Netherlands
    Posts
    1,587
    Well, as jim stated you're(if i understand correctly) looking for a standby database/or in 9i called as a dataguard in managed recovery mode(meaning archived logfile's being shipped automatically) there are certain parameter's you'll have to setup to decide the urgency of the shipping and/or validation of block corruptions(so that before a block corruption) reaches the standby database, you get to know.
    but still better read the doc's, it's very interesting.
    Tarry Singh
    I'm a JOLE(JavaOracleLinuxEnthusiast)
    TarryBlogging
    --- Everything was meant to be---

  4. #4
    Join Date
    Apr 2001
    Location
    London
    Posts
    725
    Not sure about standby config in 9i but assume it is near enough same concept as 8i.

    Your standby databse is only as up to date as the last archive log file it received. If your primary database crashes before you are able to archive its current redo log file then your standby database will be behind by that amount.

    I had to consider this when designing a failover system for one of our 24/7 servers, I have decided to use multimaster repication as this will provide a more up to date failover system than standby.

    Please don't ask me about replication configuration as it is a massive subject which I have only just started looking into.
    Once you have eliminated all of the impossible,
    whatever remains however improbable,
    must be true.

  5. #5
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    Originally posted by Sureshy
    Not sure about standby config in 9i but assume it is near enough same concept as 8i.

    Your standby databse is only as up to date as the last archive log file it received. If your primary database crashes before you are able to archive its current redo log file then your standby database will be behind by that amount.
    ubject which I have only just started looking into.
    Not any more with 9i. In 9i you can configure Dataguard (aka standby database) so that you don't loose any transaction at all. Not a single one!
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

  6. #6
    Join Date
    Apr 2002
    Location
    Shenzhen, China
    Posts
    327
    Though I think that Dataguard would be the most suitable solution in this case, only one point all you guys ignored, how the Dataguard could do a failover automatically by itself?

    You probably need to write some code to monitor the status of the Dataguard, then do a failover when you need it, you also might wanna configure the clients to TAF mode.
    Last edited by Calvin_Qiu; 11-26-2002 at 09:13 PM.
    Oracle Certified Master - September, 2003, the Second OCM in China
    *** LOOKING for PART TIME JOB***
    Data Warehouse & Business Intelligence Expert
    MCSE, CCNA, SCJP, SCSA from 1998

  7. #7
    Join Date
    Apr 2001
    Location
    London
    Posts
    725
    Automatic failover can be configured through sqlnet/tnsnames can't it ?
    Once you have eliminated all of the impossible,
    whatever remains however improbable,
    must be true.

  8. #8
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Connect-time failover, yes. Transparent Application failover, no.
    Jeff Hunter

  9. #9
    Join Date
    Dec 2000
    Posts
    8
    A couple of things here.

    If you want to use Dataguard in 9i (9.0.2 specifically) you have the recourse to a logical standby database which can be updated as per your specific requirements (default is on the log switch - they have a feature called DSO which replicates the data through db links on the fly per transaction though I have not played with that yet). Also, with the logical it can be open for users to do their reporting on and they can update tables that are NOT part of the target tables for Data guard.

    Failover is still manual though there is something that you can consider here - RAC with Cluster Guard. You get the failover (automatic) with standby databases if you need. This is a nasty setup though. Data Guard is relatively easy to setup but RAC is a pain but you do get your high availability with boths options here. Just a thought though.

  10. #10
    Join Date
    Jul 2000
    Posts
    147
    Thank you all.

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