您好,登錄后才能下訂單哦!
1.創(chuàng)建用戶
postgres=# create user test password 'test';
CREATE ROLE
注意:在PostgreSQL 里沒有區(qū)分用戶和角色的概念,"CREATE USER" 為 "CREATE ROLE" 的別名,這兩個命令幾乎是完全相同的,唯一的區(qū)別是"CREATE USER" 命令創(chuàng)建的用戶默認(rèn)帶有LOGIN屬性,而"CREATE ROLE" 命令創(chuàng)建的用戶默認(rèn)不帶LOGIN屬性
2.創(chuàng)建表空間
postgres=# create tablespace tbs owner test location 'd:\postgresql\data\tbs';
CREATE TABLESPACE
3.創(chuàng)建數(shù)據(jù)庫
postgres=# create database mydb with owner = test encoding ='UTF8' tablespace = 'tbs';
CREATE DATABASE
4.給用戶授權(quán)
postgres=# grant all on database mydb to test with grant option;
GRANT
postgres=# grant all on tablespace tbs to test;
GRANT
5.用新創(chuàng)建的用戶連接數(shù)據(jù)庫
D:\PostgreSQL\bin>psql -U test mydb
psql (12.0)
輸入 "help" 來獲取幫助信息.
mydb=>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。