首页 > 代码库 > 创建物化视图
创建物化视图
使用物化视图进行汇总管理:1、DBA分析昂贵的SQL查询并创建物化视图 2、商业用户查询表和视图 3、oracle服务器使用物化视图重写SQL查询
create materialized view cust_sales_mv (视图名)
pctfree 0 tablespace example (设置储存操作)
storage (initial 1M next 1M pctincrease 0)
build deferred (什么时候建)
refresh complete (如何刷新数据)
enable query rewrite (用来查询重写)
as select c.cust_id,s.channel_id, (详细的查询)
SUM(amount_sold)
from sales s,customers c (详细的表)
where s.cust_id = c.cust_id
group by c.cust_id, s.channel_id(MV的钥匙)
order by c.cust_id, s.channel_id;
创建物化视图
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。