码迷,mamicode.com
首页 > 其他好文 > 详细

postgres基础知识

时间:2017-05-27 13:37:47      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:user   用户名   基础知识   psql   grant   ble   数据库   知识   seq   

postgres是连接到具体的库:
   ./psql -U postgres  不指定库,默认就是用户名的同名库
   ./psql -d chat -U postgres  指定chat库
   
postgres登录权限配置文件是在数据目录下的pg_hba.conf     



\du: 查看用户
\dt: 查看表
\dn:查看schema
\c: 切换连接 如 \c postgres postgres 使用postgres用户连接到postgres数据库
\d: 查看数据库对象
\l:查看数据库

批量给某个用户授权示例
1. 管理员登录: ./psql  -U postgres

2. 创建用户: create user chat with password  ‘chatpasswd‘

3. 给用户授权:
   1. 先登录到需要授权的库下
    ./psql -d chat -U postgres

   2. 查看schema类型
    \d

   3. 根据schema授权
    grant all privileges on all tables in schema public to chat;
    
    grant usage,select on all sequences in shcema public to chat;

postgres基础知识

标签:user   用户名   基础知识   psql   grant   ble   数据库   知识   seq   

原文地址:http://www.cnblogs.com/zhaojonjon/p/6912361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!