codecamp

PostgreSQL pg_matviews

视图pg_matviews提供了关于数据库中每一个物化视图的信息。

表 51.75. pg_matviews Columns

列类型

描述

schemaname name (参考 pg_namespace.nspname)

包含物化视图的模式的名字

matviewname name (references pg_class.relname)

物化视图的名字

matviewowner name (references pg_authid.rolname)

物化视图拥有者的名字

tablespace name (参考 pg_tablespace.spcname)

包含物化视图的表空间名(如使用数据库默认表空间则为空)

hasindexes bool

如果物化视图有(或者最近有过)任何索引,则此列为真

ispopulated bool

如果物化视图当前已被填充,则此列为真

definition text

物化视图的定义(一个重构的SELECT查询)



PostgreSQL pg_locks
PostgreSQL pg_policies
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

PostgreSQL SQL语言

PostgreSQL 服务器管理

PostgreSQL 客户端接口

PostgreSQL 服务器编程

PostgreSQL 参考

PostgreSQL 内部

PostgreSQL 附录

PostgreSQL 参考书目

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }