SqlServer資料庫添加角色,角色授權

來源:互聯網
上載者:User

標籤:blog   使用   sp   on   資料   div   問題   log   bs   

   有時候我們需要跟第三方共用資料,但是又不能資料庫完全開放。   所以使用資料庫角色授權就能很好的解決這個問題。   以下是工作中用到的Sql語句。就當是做下筆記。

 

--建立角色 role_TechDBEXEC sp_addrole ‘role_TechDB‘--授予 role_TechDB 對 GXJG_JZGJCSJZLB,GXXX_YXSDWJBSJZL 表的所有許可權GRANT SELECT,DELETE,INSERT,UPDATE ON GXJG_JZGJCSJZLB TO role_TechDBGRANT SELECT,DELETE,INSERT,UPDATE ON GXXX_YXSDWJBSJZL TO role_TechDB--添加登入 zf_login,設定密碼為[email protected],預設資料庫為TechDBEXEC sp_addlogin ‘zf_login‘,‘[email protected]‘,‘TechDB‘EXEC sp_grantdbaccess ‘zf_login‘,‘zf_login‘--添加 zf_login 為角色 role_TechDB 的成員EXEC sp_addrolemember ‘role_TechDB‘,‘zf_login‘

SqlServer資料庫添加角色,角色授權

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.