重庆思庄Oracle、Redhat认证学习论坛

标题: oracle DG备库自动应用日志触发器 [打印本页]

作者: jiawang    时间: 2020-5-10 17:34
标题: oracle DG备库自动应用日志触发器
create or replace trigger dg_apply_log
after startup on database
begin
declare
database_role varchar(20);
begin
select database_role
into database_role
from v$database;
/* dbms_output.put_line('aa');*/
if database_role = 'PHYSICAL STANDBY'
then
execute immediate 'alter database recover managed standby database using current logfile disconnect from session';
dbms_output.put_line('bb');
else
dbms_output.put_line(database_role);
end if;
end;
end dg_apply_log;
/


以上只是在重启数据库的时候会触发,那么数据库的自动重启:
1.备库OS如果为windows,则可以选择服务自动启动。
2.如果备库OS为Linux,则可以通过书写脚本部署定时任务,对数据库进行启动操作。
3.如果备库使用了GI,则GI会随着操作系统的启动数据库。









欢迎光临 重庆思庄Oracle、Redhat认证学习论坛 (http://bbs.cqsztech.com/) Powered by Discuz! X3.2