sql Postgres命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql Postgres命令相关的知识,希望对你有一定的参考价值。

======= = Connect to postgres database
psql --username=postgres -h 10.254.254.254 -p 5432 postgres
=======list databases
\l 

=======  list tables
\dt 
======= select database
\c [database] 

======= Create database
CREATE DATABASE testDB; <= creating datbases

======= restoring
psql -U USERNAME DBNAME < dbexport.pgsql 
pg_restore -h 10.254.254.254 -p 5432 -U postgres -d <dbname> -v <file>.backup

======= Exit
\q <= Exit from postgres

======= permissions
grant all privileges on database <dbname> to <user>;

以上是关于sql Postgres命令的主要内容,如果未能解决你的问题,请参考以下文章

sql 配置postgres的基本命令

如何通过 SQL 命令更改 Postgres 的 max_connections

Postgres SQL (Amazon Redshift) 在启动时运行命令

如何在 pyspark Hive SQL 中获取等效的 postgres 命令“nth_value”?

如何在pyspark Hive SQL中获取等效的postgres命令'nth_value'以进行分区?

如何将sql文件导入postgres