postgresql怎麼檢視表的建立時間

時間 2021-08-11 18:15:20

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 | |

(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

怎麼檢視電腦密碼,怎麼檢視電腦密碼windows

開機時鎖住密碼麼?你同是按住ctrl alt del del按兩次出現一對話方塊 你輸入administrator 按確定就可以了 檢視電腦使用記錄 檢視開關機開啟 我的電腦 c盤windows目錄下有很多檔案,找到乙個schedlgu.txt。它是 計畫任務 的日誌,會忠實地記錄電腦計畫任務的執 ...

怎麼檢視linu系統的核心版本,怎麼檢視linux系統的核心版本

改革村風吹滿地 1 在之前需要介紹乙個目錄 proc,記憶體對映目錄。這個目錄是不佔硬碟空間的,它儲存著記憶體的真實寫照,首先檢視ls proc資訊 2 可以看到,version就是我們需要查詢的東西,然後在cat proc version檢視 3 可以看到這裡的核心版本是2.6.18,用的是紅帽 ...

怎麼檢視電腦硬碟介面型別,怎麼檢視自己筆記本硬碟介面是SATA2還是SATA3?

45度角有點暈 家用電腦硬碟介面型別一般有ide和sata,sata介面又區分為sata1.0 sata2.0以及sata3.0規範,其中sata1.0最大理倫傳輸速度基本和ide相當為150m s,sata2.0最大傳輸速度為300m s,而sata3.0最大傳輸速率為600m s。檢視硬碟介面型...