备库查询时如何保障是最新数据?-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3502556
  • 博文数量: 718
  • 博客积分: 1860
  • 博客等级: 上尉
  • 技术积分: 7790
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-07 08:51
个人简介

偶尔有空上来看看

文章分类

全部博文(718)

文章存档

2024年(4)

2023年(74)

2022年(134)

2021年(238)

2020年(115)

2019年(11)

2018年(9)

2017年(9)

2016年(17)

2015年(7)

2014年(4)

2013年(1)

2012年(11)

2011年(27)

2010年(35)

2009年(11)

2008年(11)

最近访客
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2023-06-18 11:36:04

假设物理备库用于报表查询,实时性还要求挺严格:用户查到的数据必须是{banned}{banned}最佳佳新的

  1. create trigger adg_logon_sync_trigger
  2.  after logon on user.schema
  3.   begin
  4.     if (sys_context('userenv', 'database_role') in ('physical standby')) then
  5.       execute immediate 'alter session sync with primary';
  6.     end if;
  7.   end;
可以考虑创建个触发器,登录后先刷一下,前提是不要非常频繁的登录!

看起来很不错,但有些前提条件需要准备好:

或者除了主库执行switch ,还有什么机制能同步数据呢?sync或许可用
阅读(135) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图