码迷,mamicode.com
首页 > 数据库 > 详细

PostgreSQL数据库基本操作

时间:2018-07-21 12:00:05      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:xxx   odi   修改   post   支持   enc   站点   lsp   psql   

postgresql学习站点

  1. 创建用户
1
2
3
4
5
sudo -s -u postgres
psql
postgres# CREATE USER xxxx1 WITH PASSWORD ‘xxxx‘;
postgres# CREATE DATABASE xxxx2;
postgres# GRANT ALL PRIVILEGES ON DATABASE xxxx2 to xxxx1;
  1. 修改密码

    1
    alter user postgres with password ‘foobar‘;
  2. 创建数据库

1
2
3
4
5
createdb--encoding=UTF8 --owner=foo --template=template_postgis -Ufoo
参数: --encoding=UTF8 设置数据库的字符集
--owner=foo 设置数据库的所有者
--tmplate=template_postgis 设置建库的模板,该模板支持空间数据操作
--Ufoo 用foo用户身份建立数据库

PostgreSQL数据库基本操作

标签:xxx   odi   修改   post   支持   enc   站点   lsp   psql   

原文地址:https://www.cnblogs.com/LearnFromNow/p/9345420.html

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