pg資料庫連線命令

2021-08-13 19:15:35 字數 567 閱讀 3591

psql --help 命令可檢視資料庫連線幫助文件。

pg_dump  命令可檢視導數幫助文件。

dyb為庫名,username為資料庫使用者

方法一,需要手動輸入密碼:

psql -u username -h 196.128.0.19 -p 5432 -d dyb

enter passwd for username: (這裡輸入密碼)

pg_dump -u username -h 196.128.0.19 -p 5432 -f /data/backup/dyb$.sql dyb

enter passwd for username: (這裡輸入密碼)

方法二,不需要手動輸入密碼:

psql "host =196.128.0.19 port =5432 user =username password =password dbname =dyb "

pg_dump "host =196.128.0.19 port =5432 user =username password =password dbname =dyb " -f /data/backup/dyb$.sql 

ArcSDE連線pg資料庫實踐

1.首先要明白版本對應問題 arcgis desktop 和pg版本要求一一對應。就是arcgis10.4對應pg9.4及90.4以下版本。就是arcgis10.5對應pg9.5及9.5以下版本。2.客戶端你中有我,我中有你問題 arcgis的pg外掛程式要放到pg中,pg客戶端要放到arcgis中...

gp資料庫與pg資料庫

以前專案採用的都是oracle或者是mysql的資料庫,新的專案採用了gp資料庫 greenplum 在這之前只聽說過pg資料庫 postgresql gp資料庫官網 pg資料庫官網 經過學習和查詢,得知greenplum是利用了postgre資料庫的框架,也就相當於說是,gp資料庫是基於pg資料庫...

python操作pg資料庫

描述 寫道postgresql 至少有至少 3 個 python 介面程式可 以訪問 posgresql psycopg,pypgsql 和 pygresql.第四個,popy,現在已經被廢棄 2003年,它 貢獻出自己的 與pygresql整合在一起 這三個介面程式各有長處,各有缺點,根據實踐結 ...