成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

如何使用命令查看postgresql的系統(tǒng)信息-創(chuàng)新互聯(lián)

這篇文章給大家介紹如何使用命令查看postgresql的系統(tǒng)信息,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)中從網(wǎng)站色彩、結(jié)構(gòu)布局、欄目設(shè)置、關(guān)鍵詞群組等細微處著手,突出企業(yè)的產(chǎn)品/服務(wù)/品牌,幫助企業(yè)鎖定精準用戶,提高在線咨詢和轉(zhuǎn)化,使成都網(wǎng)站營銷成為有效果、有回報的無錫營銷推廣。成都創(chuàng)新互聯(lián)公司專業(yè)成都網(wǎng)站建設(shè)十年了,客戶滿意度97.8%,歡迎成都創(chuàng)新互聯(lián)客戶聯(lián)系。

1、查看當前數(shù)據(jù)庫實例版本。

postgres=# select version();
     version     
-----------------------------------------------------------------------------------------------------------
 PostgreSQL 9.3.0 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-23), 64-bit
(1 row)

2、查看數(shù)據(jù)庫啟動時間。

postgres=# select pg_postmaster_start_time();
 pg_postmaster_start_time  
-------------------------------
 2019-08-26 10:53:47.328699+08
(1 row)

3、查看最后load配置文件的時間,可以使用pg_ctl reload改變配置的裝載時間。

postgres=# select pg_conf_load_time();
  pg_conf_load_time  
------------------------------
 2019-08-26 10:53:46.57045+08
(1 row)

4、顯示當前數(shù)據(jù)庫時區(qū)。

postgres=# show timezone;
 TimeZone 
----------
 PRC
(1 row)

5、顯示數(shù)據(jù)庫的時間,有時數(shù)據(jù)庫的時區(qū)不是當前操作系統(tǒng)的時區(qū),這時在數(shù)據(jù)庫中看到的時間就與操作系統(tǒng)中看到的時間不一樣。

postgres=# select now();
    now    
-------------------------------
 2019-08-26 10:58:36.508472+08
(1 row)

6、查看當前用戶名,current_user與user是完全相同的。

postgres=# select user;
 current_user 
--------------
 postgres
(1 row)
 
postgres=# select current_user;
 current_user 
--------------
 postgres
(1 row)

7、查看session用戶,通常情況下,session_user與user是相同的。但使用set role改變用戶角色時,session_user始終是那個原始用戶,而user是當前的角色用戶。

postgres=# select session_user;
 session_user 
--------------
 postgres
(1 row)
 
postgres=# set role=aaa;
SET
 
postgres=> select session_user;
 session_user 
--------------
 postgres
(1 row)
 
postgres=> select user;
 current_user 
--------------
 aaa
(1 row)

8、查詢當前連接的數(shù)據(jù)庫名稱,使用current_catalog和current_database()都顯示當前連接的數(shù)據(jù)庫名稱,這兩者功能完全相同,只不過catalog是SQL標準中的用語。

postgres=# select current_catalog,current_database();
 current_database | current_database 
------------------+------------------
 postgres   | postgres
(1 row)

9、查看當前session所在客戶端的IP地址及端口(僅限TCP-IP連接,如果是UDP連接的話,查詢結(jié)果IP與port都顯示空)。

postgres=# select inet_client_addr(),inet_client_port();
 inet_client_addr | inet_client_port 
------------------+------------------
     |     
(1 row)

10、查詢當前數(shù)據(jù)庫服務(wù)器的IP地址及端口(僅限TCP-IP連接,如果是UDP連接的話,查詢結(jié)果IP與port都顯示空)。

postgres=# select inet_server_addr(),inet_server_port();
 inet_server_addr | inet_server_port 
------------------+------------------
 192.168.91.5  | 5866  
(1 row)

11、查詢當前session的后臺服務(wù)進程的PID。

postgres=# select pg_backend_pid();
 pg_backend_pid 
----------------
   3958
(1 row)

12、查看當前共享內(nèi)存的大小。

postgres=# show shared_buffers;
 shared_buffers 
----------------
 128MB
(1 row)

13、修改當前session參數(shù)配置。

postgres=# set maintenance_work_mem to '128MB';
SET
 
postgres=# select set_config('maintenance_work_mem','128MB',false);
 set_config 
------------
 128MB
(1 row)

14、查看當前正在寫的WAL文件。

postgres=# select pg_xlogfile_name(pg_current_xlog_location());
  pg_xlogfile_name  
--------------------------
 00000001000000000000004B
(1 row)

15、查看當前WAL的buffer中還有多少字節(jié)的數(shù)據(jù)沒有寫到磁盤中。

postgres=# select pg_xlog_location_diff(pg_current_xlog_insert_location(),pg_current_xlog_location());
 pg_xlog_location_diff 
-----------------------
      0
(1 row)

16、查看數(shù)據(jù)庫實例是否正在做基礎(chǔ)備份。

postgres=# select pg_is_in_backup(),pg_backup_start_time(); pg_is_in_backup | pg_backup_start_time 
-----------------+----------------------
 f    | 
(1 row)

17、查看當前數(shù)據(jù)庫實例時HOT Standby狀態(tài)還是正常數(shù)據(jù)庫狀態(tài)。

postgres=# select pg_is_in_recovery();
 pg_is_in_recovery 
-------------------
 f
(1 row)

18、查看數(shù)據(jù)庫大小,如果數(shù)據(jù)庫中有很多表,使用上述命令將比較慢,可能對當前系統(tǒng)產(chǎn)生不利影響,pg_size_pretty()函數(shù)會把數(shù)字以MB、GB等格式顯示出來。

postgres=# select pg_database_size('postgres'),pg_size_pretty(pg_database_size('postgres'));
 pg_database_size | pg_size_pretty 
------------------+----------------
   67922104 | 65 MB
(1 row)

19、查看表的大小,僅計算表的大小,不包括索引的大小。

postgres=# select pg_size_pretty(pg_relation_size('test')); pg_size_pretty 
----------------
 0 bytes
(1 row)

20、查看表的大小,pg_total_relation_size()把表上索引的大小也計算入內(nèi)。

postgres=# select pg_size_pretty(pg_total_relation_size('test'));
 pg_size_pretty 
----------------
 0 bytes
(1 row)

21、查看表上所有索引的大小,pg_indexes_size()函數(shù)的參數(shù)名是一個表對應(yīng)的oid(輸入表名會自動轉(zhuǎn)換成表的oid),而不是索引的名稱。

postgres=# select pg_size_pretty(pg_indexes_size('test'));
 pg_size_pretty 
----------------
 0 bytes
(1 row)

22、查看表空間大小。

postgres=# select pg_size_pretty(pg_tablespace_size('pg_global'));
 pg_size_pretty 
----------------
 477 kB
(1 row)

23、查看表對應(yīng)的數(shù)據(jù)文件。

postgres=# select pg_relation_filepath('test');
 pg_relation_filepath 
----------------------
 base/12902/24952
(1 row)

補充:PostgreSQL命令行常用命令psql

PostgreSQL命令行常用命令(psql)

一般我們使用 psql來和數(shù)據(jù)庫交互,方括號中為可選項參數(shù),不帶任何參數(shù)表示連接本機

psql [option…] [dbname [username]]

登錄數(shù)據(jù)庫

psql -h 127.0.0.1 -p 5432 -d database -U postgres

-h 數(shù)據(jù)庫ip

-p 端口號

-d 數(shù)據(jù)庫名

-U 登錄用戶名

導入SQL腳本

示例:

psql -U postgres -d database -f sqlScript.sql

將sqlScript.sql導入到名為database的數(shù)據(jù)庫中

常用命令

展示數(shù)據(jù)庫

\l 或者 \list

支持正則匹配,例如展示包含post字符的數(shù)據(jù)庫

\l '*post*'

如何使用命令查看postgresql的系統(tǒng)信息

切換數(shù)據(jù)庫(創(chuàng)建新的數(shù)據(jù)庫連接)

\c 可選參數(shù) dbname [ username ] [ host ] [ port ]

eg:

\c postgres
或者
\c postgres username localhost 5432

展示當前數(shù)據(jù)庫下所有關(guān)系(table、view、sequence等)

\d 展示當前所有表

如何使用命令查看postgresql的系統(tǒng)信息

\d “Account” 展示Account表字段信息

如何使用命令查看postgresql的系統(tǒng)信息

展示當前數(shù)據(jù)庫下所有schema信息

\dn

如何使用命令查看postgresql的系統(tǒng)信息

顯示當前使用的schema

SHOW search_path;

當前schema為public

 search_path  
----------------
 "$user",public

切換當前schema

SET search_path TO myschema;
# set search_path to auth;
# SHOW search_path;
 search_path 
-------------
 auth

斷開數(shù)據(jù)庫連接

\q

關(guān)于如何使用命令查看postgresql的系統(tǒng)信息就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

當前文章:如何使用命令查看postgresql的系統(tǒng)信息-創(chuàng)新互聯(lián)
本文鏈接:http://jinyejixie.com/article20/djeoco.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)建站公司、標簽優(yōu)化Google、用戶體驗、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司
宜宾县| 云南省| 旅游| 肇东市| 南昌市| 吉木乃县| 绥阳县| 佳木斯市| 托克逊县| 兴国县| 大兴区| 南丰县| 康马县| 岚皋县| 永清县| 淮北市| 突泉县| 花莲市| 大理市| 环江| 龙川县| 永丰县| 乐平市| 东台市| 北川| 丹江口市| 卢氏县| 昔阳县| 新津县| 盘山县| 德昌县| 克什克腾旗| 宽甸| 东丰县| 邵阳县| 稷山县| 桐乡市| 水城县| 洛扎县| 苏尼特右旗| 防城港市|