[Oracle] 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;
/
——————————————————————————————————————————數據庫

重慶思莊IT技術學習中心session

重慶思莊OCP認證培訓班火熱報名中,詳情訪問思莊網站諮詢在線客服!1月OCP(週末+脫產)班正在面授,歡迎聯繫試聽!oracle

相關文章
相關標籤/搜索