28.04.2013 Views

Oracle GoldenGate and Oracle Data Guard

Oracle GoldenGate and Oracle Data Guard

Oracle GoldenGate and Oracle Data Guard

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Role Change Trigger<br />

create or replace trigger ogg_failover_actions<br />

after db_role_change on database<br />

declare<br />

role varchar(30) ;<br />

begin<br />

select database_role into role from v$database ;<br />

if role = 'PRIMARY' then<br />

dbms_scheduler.create_job(<br />

job_name => 'failover_script',<br />

job_type => 'EXECUTABLE',<br />

job_action => '/ade/b/5568817/oracle/work/failover_action.sh',<br />

enabled => TRUE) ;<br />

end if ;<br />

end ;<br />

end;<br />

/<br />

42 Copyright © 2011, <strong>Oracle</strong> <strong>and</strong>/or its affiliates. All rights reserved.

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!