标题: oracle DG备库自动应用日志 [打印本页] 作者: zhouwei1990 时间: 2018-1-18 17:47 标题: oracle DG备库自动应用日志 oracle ADG物理备库在数据库重启后,不能自动对日志进行应用,可通过以下触发器来让数据库应用日志。
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;
/