Microsoft Purview 无法扫描无服务器表的字段。

huangapple go评论75阅读模式
英文:

Microsoft Purview is not able to scan serverless table's fields

问题

在扫描 Microsoft Purview 的 Synapse 无服务器 SQL 表时,无法达到列级别的详细信息。

尝试找出为什么无法扫描表列的原因。

对于这个问题的任何线索都将不胜感激。

请查看扫描和结果的屏幕截图。扫描结果为 Synapse Workspace > Serverless SQL 数据库 > 架构 > 表
Microsoft Purview 无法扫描无服务器表的字段。

英文:

While scanning Synapse Serverless SQL tables from Microsoft Purview, not able to reach till column-level details.

Trying to figure out what could be the reason for not scanning the table columns.

Any leads for this issue would be appreciable.

Please find below the screenshot of the scan and the result. Scan gives the
Synapse Workspace > Serverless SL Database > Schema > Table
Microsoft Purview 无法扫描无服务器表的字段。

答案1

得分: 2

扫描无服务器数据库表以查看账户。
Reader角色添加到Purview账户以与synapse工作空间同步。
使用以下代码为purview账户在无服务器数据库中创建登录:

CREATE USER [<PurvieName>] FOR LOGIN [purview];
ALTER ROLE db_datareader ADD MEMBER [<PurvieName>];

在根据您的要求扫描无服务器数据库时添加权限。更多信息,请参考以下链接:

  1. https://learn.microsoft.com/en-us/azure/purview/register-scan-synapse-workspace?tabs=MI
  2. https://www.serverlesssql.com/integrating-azure-purview-with-synapse-analytics-serverless-sql-pools/.
英文:

To scan serverless database table to purview account.
Add Reader role to the Purview account to the synapse work space.
Create login for purview account in serverless database using below code:

CREATE  USER [<PurvieName>] FOR  LOGIN [purview];
ALTER  ROLE db_datareader ADD  MEMBER [<PurvieName>];  

Microsoft Purview 无法扫描无服务器表的字段。

Add permissions to the serverless databases to scan according to your requirement. For more information you can refer below:

  1. https://learn.microsoft.com/en-us/azure/purview/register-scan-synapse-workspace?tabs=MI
  2. https://www.serverlesssql.com/integrating-azure-purview-with-synapse-analytics-serverless-sql-pools/.

huangapple
  • 本文由 发表于 2023年5月28日 02:28:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/76348420.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定