当前位置:网站首页>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 |
边栏推荐
- Unrecognized SSL message, plaintext connection?
- 502 (bad gateway) causes and Solutions
- Hard core observation 547 large neural network may be beginning to become aware?
- Visual yolov5 format data set (labelme JSON file)
- Apple releases MacOS 11.6.4 update: mainly security fixes
- [Yu Yue education] reference materials of chemical experiment safety knowledge of University of science and technology of China
- File class (add / delete)
- [Yu Yue education] reference materials of love psychology of China University of mining and technology
- Swift development learning
- 4. Classes and objects
猜你喜欢

创建+注册 子应用_定义路由,全局路由与子路由
![[shutter] bottom navigation bar implementation (bottomnavigationbar bottom navigation bar | bottomnavigationbaritem navigation bar entry | pageview)](/img/41/2413af283e8f1db5d20ea845527175.gif)
[shutter] bottom navigation bar implementation (bottomnavigationbar bottom navigation bar | bottomnavigationbaritem navigation bar entry | pageview)

awk从入门到入土(0)awk概述

4. 类和对象

内存池(内核角度理解new开辟空间的过程)

easyExcel

Servlet中数据传到JSP页面使用el表达式${}无法显示问题

微信小程序開發工具 POST net::ERR_PROXY_CONNECTION_FAILED 代理問題

通达OA 首页门户工作台
【ROS进阶篇】第六讲 ROS中的录制与回放(rosbag)
随机推荐
详细些介绍如何通过MQTT协议和华为云物联网进行通信
[Flutter] dart: class; abstract class; factory; Class, abstract class, factory constructor
How can retail enterprises open the second growth curve under the full link digital transformation
单词单词单词
Summary of ES6 filter() array filtering methods
Solution for processing overtime orders (Overtime unpaid)
深度学习笔记(持续更新中。。。)
Machine learning process and method
DML Foundation
require. context
String replace space
Restcloud ETL cross database data aggregation operation
leetcode961. Find the elements repeated N times in the array with length 2n
人脸识别6- face_recognition_py-基于OpenCV使用Haar级联与dlib库进行人脸检测及实时跟踪
【ROS进阶篇】第六讲 ROS中的录制与回放(rosbag)
【教程】chrome关闭跨域策略cors、samesite,跨域带上cookie
Pytorch convolution network regularization dropblock
Depth (penetration) selector:: v-deep/deep/ and > > >
Producer consumer model based on thread pool (including blocking queue)
GBase 8c系统表-pg_conversion