标签: dedicated-sql-pool

用户可以从架构中删除表,但无法创建表

在 Azure Synapse 专用 SQL 池中,我有以下设置:

-- a custom DB role to manage privileges
CREATE ROLE [owner];

-- there is a schema owned by this role
CREATE SCHEMA [myschema] AUTHORIZATION [owner];

-- an Azure AD group to allow its members to log in
CREATE USER [radish] FROM EXTERNAL PROVIDER;

-- the AAD group is a member of the owner role
EXEC sp_addrolemember 'owner', 'radish';

-- privileges are assigned exclusively through custom DB roles
GRANT ALTER, CONTROL on SCHEMA::[myschema] TO [owner]; …
Run Code Online (Sandbox Code Playgroud)

sql-server permissions active-directory azure-synapse-analytics dedicated-sql-pool

5
推荐指数
1
解决办法
786
查看次数