DB2 建立授權指令碼 grantread.sh

fjzcau發表於2015-03-28
--建立授權指令碼 grantread.sh
DB=$1
DB_USER=$2
DB_PWD=$3

db2 connect to $DB user $DB_USER using $DB_PWD
db2 "select 'grant select on table ' || rtrim(tabschema) || '.' || tabname || ' to testuser_1; '
from syscat.tables
where tabschema='$DB_USER' " > readauthdb.sql

grep grant readauthdb.sql > read_auth.sql
db2 -tvf read_auth.sql

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22661144/viewspace-1477192/,如需轉載,請註明出處,否則將追究法律責任。

相關文章