postgresql怎么查看表的创建时间

postgresql怎么查看表的创建时间,第1张

方法一:通过查找表数据文件方式

这种方法通过查找表的数据文件的方式从而确定表的创建时间,但是这种方法并不能准备查询表的创建

时间,而且有时候,这种方法得到的信息还有可能是错误的,下面大致演示下。

--1.1 创建表并插入数据

francs=>create table test_ctime (id int4 primary key ,name varchar(32))

NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "test_ctime_pkey" for table "test_ctime"

CREATE TABLE

francs=>insert into test_ctime select generate_series(1,10000),'create_time test'

INSERT 0 10000

francs=>\d test_ctime

Table "francs.test_ctime"

Column | Type | Modifiers

--------+-----------------------+-----------

id | integer | not null

name | character varying(32) |

Indexes:

"test_ctime_pkey" PRIMARY KEY, btree (id)

francs=>\dt+ test_ctime

List of relations

Schema |Name| Type | Owner | Size | Description

--------+------------+-------+--------+--------+-------------

francs | test_ctime | table | francs | 536 kB |

(1 row)

备注:表创建好了,接下来演示如何定位表的物理文件。

--1.2 定位表所在的表空间

francs=>select relname,relfilenode,reltablespace from pg_class where relname='test_ctime'

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24650 | 0

(1 row)

备注:在 PostgreSQL 的逻辑结构体系中,表位于数据库中,同时表位于表空间上,面表空间对应系统上一个

文件目录,每个表由一个或者多个文件组成; 根据上面的结果,表 test_ctime 的 reltablespace

值为 0,表示位于所属数据库的默认表空间,注意 relfilenode 值为 24650。

--1.3 查询数据库 francs 的默认表空间

francs=>select oid,datname,dattablespace from pg_database where datname='francs'

oid | datname | dattablespace

-------+---------+---------------

16386 | francs | 16385

备注:上面查出数据库 francs 的默认表空间的 oid 为 16385。

--1.4 查找 oid 为 16385 的表空间

francs=>select oid,* from pg_tablespace where oid=16385

oid | spcname | spcowner | spcacl | spcoptions

-------+------------+----------+-----------------------------------------+------------

16385 | tbs_francs | 10 | {postgres=C/postgres,francs=C/postgres} |

(1 row)

备注:查了半天才查到表 test_ctime 的默认表空间为 tbs_francs,这里之所以饶这么大圈,是为

了展示 postgresql 中的一些逻辑结构关系,如果自己对环境比较熟悉,可以直接定位到

哪个表空间。

--1.5 查询表空间 tbs_francs 对应的物理目录

francs=>\db

List of tablespaces

Name| Owner | Location

------------+----------+------------------------------------------

pg_default | postgres |

pg_global | postgres |

tbs_francs | postgres | /database/1922/pgdata1/pg_tbs/tbs_francs

(3 rows)

备注:表空间 tbs_francs 的数据目录为 /database/1922/pgdata1/pg_tbs/tbs_francs。

--1.6 进入数据目录

[postgres@redhat6 16386]$ cd /database/1922/pgdata1/pg_tbs/tbs_francs

[postgres@redhat6 tbs_francs]$ ll

total 4.0K

drwx------. 4 postgres postgres 4.0K May 22 10:35 PG_9.2_201204301

[postgres@redhat6 tbs_francs]$ cd PG_9.2_201204301/

[postgres@redhat6 PG_9.2_201204301]$ ll

total 16K

drwx------. 2 postgres postgres 12K Jun 26 19:03 16386

drwx------. 2 postgres postgres 4.0K May 22 10:37 pgsql_tmp

备注:根据前面的步骤 1.3 查询的信息知道 16386 为数据库 francs 的 oid。 再根据步骤 1.2 的信息知道

表 test_ctime 的 relfilenode 值为 24650

--1.7 查找表 test_ctime 的数据文件

[postgres@redhat6 16386]$ ll 24650

-rw-------. 1 postgres postgres 512K Jun 26 18:57 24650

备注:根据数据文件 24650 知道表的创建时间为 2012-06-26 18:57。但这种方法并不准确,因为

表上的 *** 作可能导致表重新生成文件,接着演示。

--1.8 cluster 表

francs=>cluster verbose test_ctime using test_ctime_pkey

INFO: clustering "francs.test_ctime" using index scan on "test_ctime_pkey"

INFO: "test_ctime": found 0 removable, 10000 nonremovable row versions in 64 pages

DETAIL: 0 dead row versions cannot be removed yet.

CPU 0.00s/0.03u sec elapsed 0.08 sec.

CLUSTER

francs=>select relname,relfilenode,reltablespace from pg_class where relname='test_ctime'

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24655 | 0

(1 row)

备注:表 test_ctime 经过 cluster *** 作后,重新生成了数据文件,文件号由原来的 24650 变成了 24655

--1.9 系统上再次查询表数据文件

[postgres@redhat6 16386]$ ll 24650

-rw-------. 1 postgres postgres 0 Jun 26 19:19 24650

[postgres@redhat6 16386]$ ll 24655

-rw-------. 1 postgres postgres 512K Jun 26 19:19 24655

备注:显然新文件的时间 24655 并不是表 test_ctime 的初始创建时间。

--1.10 vacuum full 表

francs=>vacuum full test_ctime

VACUUM

francs=>select relname,relfilenode,reltablespace from pg_class where relname='test_ctime'

relname | relfilenode | reltablespace

------------+-------------+---------------

test_ctime | 24659 | 0

(1 row)

备注: vacuum full *** 作后,同样产生了新文件,新文件号为 24659

--1.11 系统上再次查询表数据文件

[postgres@redhat6 16386]$ ll 24659

-rw-------. 1 postgres postgres 512K Jun 26 19:22 24659

思路:

1、在MSSQL中有分别存储数据库和表的信息表

2、存储数据库信息的表为:sys.databases,它是对SQL Server 系统上的每个系统数据库和用户自定义的数据库含有一行记录,并且,它只出现在master数据库中。

3、表的信息为:sys.tables,它是当前数据库中的所有的表对象,包含所有表的信息。

实现代码:

--1、数据库信息

select * from master..sysdatabases --2、表信息

use 某某数据库

go

select * from sys.tables

延伸阅读:

数据库中系统表及用途

sysaltfiles:主数据库 保存数据库的文件

syscharsets:主数据库字符集与排序顺序

sysconfigures:主数据库 配置选项

syscurconfigs:主数据库当前配置选项

sysdatabases:主数据库服务器中的数据库

syslanguages:主数据库语言

syslogins:主数据库 登陆帐号信息

sysoledbusers:主数据库 链接服务器登陆信息

sysprocesses:主数据库进程

sysremotelogins主数据库 远程登录帐号

syscolumns:每个数据库 列

sysconstrains:每个数据库 限制

sysfilegroups:每个数据库 文件组

sysfiles:每个数据库 文件

sysforeignkeys:每个数据库 外部关键字

sysindexs:每个数据库 索引

sysmenbers:每个数据库角色成员

sysobjects:每个数据库所有数据库对象

syscomments:数据库对象的详细资料

syspermissio ns:每个数据库 权限

systypes:每个数据库 用户定义数据类型

sysusers:每个数据库 用户

提供两种方法吧。

一、在相应数据库查询分析器里面输入

select name,crdate from sysobjects where name='Tablename'

其中Tablename替换成要查询的表名称,查询出来的crdate即为表创建时间。

二、直接到企业管理里打开表的列表,找到相关表,直接就能看见创建日期项。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6426726.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-22
下一篇 2023-03-22

发表评论

登录后才能评论

评论列表(0条)

保存