码迷,mamicode.com
首页 > 数据库 > 详细

ORACLE建立物化视图

时间:2017-10-22 00:15:14      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:join   left join   ref   sda   视图   har   date   tno   color   

       
--使用 on commit 的方式建立物化视图  
create materialized view emp_dept refresh on commit 
as 
select t.*,d.dname from emp t , dept d
       where  t.deptno  = d.deptno;      
       
--使用 on demand的方式建立物化视图
create materialized view mv_name refresh force on demand start with sysdate 
       next to_date( concat( to_char( sysdate+1,dd-mm-yyyy), 22:00:00),dd-mm-yyyy hh24:mi:ss)
              as 
select t.*,d.dname  from emp t 
       left join dept d
       on t.deptno  = d.deptno;
       
--用left join 不能使用 on commit 的刷新方式,但是能使用 on demand的刷新方式
create materialized view emp_dept1 refresh force on commit 
as 
select t.*,d.dname  from emp t 
       left join dept d
       on t.deptno  = d.deptno;

 

ORACLE建立物化视图

标签:join   left join   ref   sda   视图   har   date   tno   color   

原文地址:http://www.cnblogs.com/yhoralce/p/7706549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!