Storage Account not listed for "Register Source" in Purview account

118 views Asked by At

I am trying to register multiple data storage account of type ADLS gen2 in my purview account.

I only see 1 ADLS gen2 storage account 'prodstaticblob' not the other 2. Can someone please guide me what I am missing here.

enter image description here

enter image description here

My Purview account is in 'POC' resource group, still its not able to detect storage account from same resource group. enter image description here

1

There are 1 answers

0
Bhavani On

Check whether your created storage accounts are Azure Data Lake storage accounts or Blob storage by using the Azure CLI script below:

az resource show --name <storageAccountName> --resource-group <resourceGroupName>  --resource-type "Microsoft.Storage/storageAccounts"  --query properties.isHnsEnabled

If the storage account is an Azure Data Lake storage account, you will get an output of "true" as shown below:

enter image description here

While creating an Azure storage account, enable Hierarchical Namespace as shown below:

enter image description here

This will create an Azure Data Lake storage account. The storage accounts will then be available in the Purview account, as shown below:

enter image description here