tSQL to set up user with View Definition permission on SQL Azure

前端 未结 3 1087
执念已碎
执念已碎 2021-02-14 03:01

I\'m trying to export a SQL Azure database to a .bacpac file using the Azure portal. The administrator username on my database contains a *

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-14 03:36

    Got it. I can add the user to the db_owner role and then the export proceeds without error.

    EXEC sp_addrolemember 'db_owner', 'gu6t6rdb'
    

提交回复
热议问题