Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 384 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 384 Bytes

PostgresSQL

psql URI # 接続  
# URIは環境変数をそのまま指定すると楽チン($ psql $DATA_BASE)  

postgres=> \d # lsに相当  
# ただし、set pathしないとpublic以外は検索対象にならない  

# バックアップを取得する.   
pg_dump $DATA_BASE >> dump.sql  

References

https://www.postgresql.org/docs/10/static/app-psql.html