【Oracle】——查看物化视图

更新日志:

  • [2020-01-14]
    文章发布

说明:

  • 本文地址
    • 《【Oracle】——查看物化视图》https://blog.csdn.net/maixiaochai/article/details/103975861
  • 关于 MaiXiaochai
    • CSDN:https://blog.csdn.net/maixiaochai
    • GitHub:https://github.com/MaiXiaochai

1. 全部物化视图
  •   select * from all_mviews;
    
2. 指定用户下的物化视图
  •   --  USERNAME, 要查询的物化视图所在的用户的名称
      select * from all_mviews where owner ='USERNAME';
    

The end.

你可能感兴趣的:(Oracle)