91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PostgreSQL對現有,新建的表和視圖授權給用戶

發布時間:2020-07-06 17:52:04 來源:網絡 閱讀:15216 作者:Darren_Chen 欄目:MySQL數據庫

由于開發提出需求:

(1)在多個PostgreSQL的instacne上面創建一個readonly用戶,僅對數據庫里面的表或者視圖(包括物化視圖)有僅有select權限,并且對以后新建的表和視圖也要有select權限,我們知道PostgreSQL

    在schema下新建的表,對于一個已經存在的用戶不會自動賦予select的權限的,需要我們使用grant select...手動去執行,這樣就比較麻煩,總不能每次新建表,我們就賦權一次,要知道我們有很多實例,總不能把時間都放在這樣沒有       意義的事情上,再說了我們也不能時刻監督有哪些PostgreSQL有新建的表,所以我們需要對未來的表提前授權,查看了一下PostgreSQL網站,發現命令alter default privileges...可以實現這個功能.


(2)alter default privileges沒有對已經存在的表和視圖授權的功能,所以想要對現在和未來的對象都賦權,還需要使用grant select對現有的表賦權.


(3)由于需要執行的db/schenma非常多,一條一條命令執行的話不太現實,需要編寫腳本,批量執行.


(4)具體如何實現可以參考測試過程:

https://blog.51cto.com/darrenmemos/2086198


腳本如下:

#!/bin/ksh -x
# ###########################################################################
#       Name:            postgreSQL_grant_readonly_privileges.sh
#       Location:
#       Function:        PostgreSQL grant readonly privileges
#       Author:
#       Create Date:
#       update Date:
#############################################################################

/usr/local/pgsql/bin/psql -d postgres -q -t -c "select datname from pg_catalog.pg_database where datname not in('postgres','template1','template0');" | grep -v "^$" > /tmpb_list.log

while read db_name
do
   /usr/local/pgsql/bin/psql -d ${db_name} -q -t -c "select schema_name from information_schema.schemata where schema_name not in pg_catalog','information_schema','pg_toast','pg_temp_1','pg_toast_temp_1');" | grep -v "^$" > /tmp/schema_list.log

   while read schema_name
   do
    /usr/local/pgsql/bin/psql -d ${db_name} -q -t -c "grant select on all tables in schema ${schema_name} to readonly;"
    /usr/local/pgsql/bin/psql -d ${db_name} -q -t -c "grant usage on schema ${schema_name} to readonly;"
    /usr/local/pgsql/bin/psql -d ${db_name} -q -t -c "alter default privileges in schema ${schema_name} grant select on tables to readonly;"
   done < /tmp/schema_list.log

done < /tmp/db_list.log

exit 0


然后就可以在服務器上批量執行了。


參考鏈接:

https://www.postgresql.org/docs/9.3/static/sql-grant.html

https://www.postgresql.org/docs/9.4/static/sql-alterdefaultprivileges.html


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

革吉县| 武义县| 会泽县| 泾川县| 金昌市| 隆安县| 屯留县| 南木林县| 黑水县| 昆山市| 安岳县| 甘孜| 开化县| 濮阳市| 大厂| 海兴县| 柳江县| 陇川县| 衡水市| 清河县| 博客| 陵水| 汽车| 靖远县| 岢岚县| 河曲县| 南投县| 乃东县| 浙江省| 大连市| 铜川市| 胶州市| 军事| 周口市| 海门市| 昂仁县| 奉贤区| 武定县| 鄂托克旗| 遵义市| 合水县|