摘要:
2010年11月16日 11:25:37物化视图create materialized view m_test_view refresh force BUILD IMMEDIATE --创建物化视图的时候就生成数据(默认就是BUILD IMMEDIATE) --(BUILD DEFERRED) 则在创建时不生成数据,以后根据需要在生成数据 on commit --视图数据基于基表提交时更新 --(on demand) 根据自己需要刷新数据(可以根据刷新包手动刷新) as select * from gs_gcomm_table; --删除物化视图drop materialized vi... 阅读全文