当前位置:网站首页>Gbase 8C system table PG_ database
Gbase 8C system table PG_ database
2022-07-03 02:18:00 【Dazhuang twelve】
pg_database System tables store information about available databases .
name | type | quote | describe |
oid | oid | Row identifier ( Hidden attribute , Must be explicitly selected to display ) | |
datname | name | Database name | |
datdba | oid | pg_authid.oid | The owner of the database , Usually the user who created it |
encoding | int4 | The character encoded number of this database (pg_encoding_to_char() This number can be converted into a coded name ) | |
datcollate | name | Of this database LC_COLLATE | |
datctype | name | Of this database LC_CTYPE | |
datistemplate | bool | If it is true , Then this database can be used by anyone with CREATEDB Privileged user cloning ; If it is false , only The super user or the owner of the database can clone it . | |
datallowconn | bool | If false, no one can connect to this database . This can be used to protect template0 The database is not modified . | |
datconnlimit | int4 | Set the maximum number of concurrent connections that can connect to this database .-1 There is no limit . | |
datlastsysoid | oid | The last system in the database OID, Yes pg_dump Particularly useful | |
datfrozenxid | xid | All transactions before ID It has been replaced with a permanent (“ Frozen ”) Business ID. This is used to track whether the database needs to be cleaned up , In order to organize affairs ID Loopback or allow pg_xact Contracted . It is the of all tables in this database pg_class.relfrozenxid The minimum value of . | |
datminmxid | xid | All previous multi transactions ID It has been replaced with a transaction in the database ID. This is used to track whether the database needs to be clear , In order to organize affairs ID Loopback or allow pg_multixact Contracted . It is in this database All the tables pg_class.relminmxid The minimum value of . | |
dattablespace | oid | pg_tablespace.oid | The default tablespace for this database . In this database , all pg_class.reltablespace by 0 All tables will be stored in this table space , In particular, non shared system directories will be included . |
datacl | aclitem[] | Access right |
边栏推荐
- Recommendation letter of "listing situation" -- courage is the most valuable
- 机器学习流程与方法
- PyTorch 卷积网络正则化 DropBlock
- 【ROS进阶篇】第六讲 ROS中的录制与回放(rosbag)
- SPI mechanism
- leetcode961. Find the elements repeated N times in the array with length 2n
- 詳細些介紹如何通過MQTT協議和華為雲物聯網進行通信
- iptables 4层转发
- DML Foundation
- Flink CDC mongoDB 使用及Flink sql解析monggo中复杂嵌套JSON数据实现
猜你喜欢
Servlet中数据传到JSP页面使用el表达式${}无法显示问题
线程安全的单例模式
Machine learning notes (constantly updating...)
[fluent] fluent debugging (debug debugging window | viewing mobile phone log information | setting normal breakpoints | setting expression breakpoints)
Recommendation letter of "listing situation" -- courage is the most valuable
8 free, HD, copyright free video material download websites are recommended
通达OA v12流程中心
创建+注册 子应用_定义路由,全局路由与子路由
Y54. Chapter III kubernetes from introduction to mastery -- ingress (27)
Tongda OA homepage portal workbench
随机推荐
通达OA v12流程中心
Awk from entry to burial (1) awk first meeting
Awk from introduction to earth (0) overview of awk
详细些介绍如何通过MQTT协议和华为云物联网进行通信
Recommendation letter of "listing situation" -- courage is the most valuable
Kotlin middle process understanding and Practice (I)
【CodeForces】CF1338A - Powered Addition【二进制】
easyExcel
Missing library while loading shared libraries: libisl so. 15: cannot open shared object file: No such file
苏世民:25条工作和生活原则
Awk from getting started to being buried (2) understand the built-in variables and the use of variables in awk
Trial setup and use of idea GoLand development tool
Thread safe singleton mode
Tongda OA V12 process center
iptables 4层转发
微信小程序开发工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理问题
Groovy, "try with resources" construction alternative
机器学习流程与方法
5.文件操作
GBase 8c系统表-pg_authid