<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic automate object level tsql permissions in fabric data warehouse in Data Engineering</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4791513#M11600</link>
    <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hello everyone,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;I am trying to automate the management of object-level permisisons in a Fabric Warehouse as mentioned in the article &lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/entra-id-authentication#workspace-setting" target="_self"&gt;data-warehouse entra-id-authentication&lt;/A&gt;&amp;nbsp;(the scenario&amp;nbsp;&lt;STRONG&gt;Assign a user or SPN to a specific item&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Context: Our Project has a central Warehouse for reporting, and we want to allow different departments to build their own reports based on data from the Warehouse. We have foreseen different sql schemas per department and we expose data to reports through views. i.e. data required by procurement will be exposed in views in a 'procurement' schema.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;each department then get a separate fabric Workspace with workspace identity enabled, to store their reports.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;At the moment, in order to allow the identities of the reporting workspaces to read data only from their dedicated schema in the Warehouse we:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; manually add the entra id identity as user in the warehouse, without granting any additional permissions as described in the article liked above&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; manually grant select over the appropriate schema for the entra id identity (e.g. &lt;/SPAN&gt;&lt;SPAN&gt;`GRANT SELECT ON SCHEMA::pbi_procurement TO [REP-Procurement]`&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;This setup works fine in manual mode. But we are at a point where we now want to automate as many things as possible so that the entire solution is defined as code.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Unfortunately trying to run the SQL commands from an Azure DevOps pipeline ends up with an error: Invoke-Sqlcmd: Principal 'REP-Procurement' could not be resolved. Error message: 'Server identity is not configured. Please follow the steps in "Assign an Azure AD identity to your server and add Directory Reader permission to your identity" (&lt;A href="https://aka.ms/sqlaadsetup" target="_blank" rel="noopener"&gt;https://aka.ms/sqlaadsetup&lt;/A&gt;)'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Based on our experience with Azure SQL Databases and Azure Synapse SQL Pools, this error is typically raised because when the `create user xxx from external provider` command is submitted by a service principal (i.e. azure devops service connection) the entra id object ID of the UPN/SPN&amp;nbsp; is actually resolved by the SQL Server. Therefore the SQL server needs a managed identity, and it also needs GraphAPI Directory.Read permission.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However, granting Directory.Read permisison to the Managed Identity of the Fabric Workspace hosting the warehouse object does not solve the issue!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Does anyone know which 'server identity' is being used in such scenarios in Fabric?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Fri, 08 Aug 2025 15:42:41 GMT</pubDate>
    <dc:creator>albosta</dc:creator>
    <dc:date>2025-08-08T15:42:41Z</dc:date>
    <item>
      <title>automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4791513#M11600</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hello everyone,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;I am trying to automate the management of object-level permisisons in a Fabric Warehouse as mentioned in the article &lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/entra-id-authentication#workspace-setting" target="_self"&gt;data-warehouse entra-id-authentication&lt;/A&gt;&amp;nbsp;(the scenario&amp;nbsp;&lt;STRONG&gt;Assign a user or SPN to a specific item&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Context: Our Project has a central Warehouse for reporting, and we want to allow different departments to build their own reports based on data from the Warehouse. We have foreseen different sql schemas per department and we expose data to reports through views. i.e. data required by procurement will be exposed in views in a 'procurement' schema.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;each department then get a separate fabric Workspace with workspace identity enabled, to store their reports.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;At the moment, in order to allow the identities of the reporting workspaces to read data only from their dedicated schema in the Warehouse we:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; manually add the entra id identity as user in the warehouse, without granting any additional permissions as described in the article liked above&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt; manually grant select over the appropriate schema for the entra id identity (e.g. &lt;/SPAN&gt;&lt;SPAN&gt;`GRANT SELECT ON SCHEMA::pbi_procurement TO [REP-Procurement]`&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;This setup works fine in manual mode. But we are at a point where we now want to automate as many things as possible so that the entire solution is defined as code.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Unfortunately trying to run the SQL commands from an Azure DevOps pipeline ends up with an error: Invoke-Sqlcmd: Principal 'REP-Procurement' could not be resolved. Error message: 'Server identity is not configured. Please follow the steps in "Assign an Azure AD identity to your server and add Directory Reader permission to your identity" (&lt;A href="https://aka.ms/sqlaadsetup" target="_blank" rel="noopener"&gt;https://aka.ms/sqlaadsetup&lt;/A&gt;)'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Based on our experience with Azure SQL Databases and Azure Synapse SQL Pools, this error is typically raised because when the `create user xxx from external provider` command is submitted by a service principal (i.e. azure devops service connection) the entra id object ID of the UPN/SPN&amp;nbsp; is actually resolved by the SQL Server. Therefore the SQL server needs a managed identity, and it also needs GraphAPI Directory.Read permission.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;However, granting Directory.Read permisison to the Managed Identity of the Fabric Workspace hosting the warehouse object does not solve the issue!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;Does anyone know which 'server identity' is being used in such scenarios in Fabric?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 08 Aug 2025 15:42:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4791513#M11600</guid>
      <dc:creator>albosta</dc:creator>
      <dc:date>2025-08-08T15:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4792759#M11630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;To automate object-level T-SQL permissions in Fabric Warehouse, use GRANT SELECT ON SCHEMA::schema_name TO [workspace_identity] - Fabric auto-creates the user. Avoid using CREATE USER, as it's not supported. Ensure the Fabric workspace identity is assigned to the warehouse and has Directory Reader permission in Entra ID. Run SQL via a principal that can resolve Entra objects - typically the workspace identity, not the DevOps service principal. If using Invoke-Sqlcmd in pipelines, make sure the identity has Graph API access to avoid resolution errors. This setup supports schema-level isolation across departments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can go through the below Microsoft documentation for your reference:&lt;BR /&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/data-warehouse/sql-granular-permissions" target="_blank"&gt;SQL Granular Permissions - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Aug 2025 06:37:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4792759#M11630</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-08-11T06:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4794469#M11674</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1250613" data-lia-user-login="v-venuppu" class="lia-mention lia-mention-user"&gt;v-venuppu&lt;/a&gt;&amp;nbsp;thanks for getting back on this. Here are some screenshots about me setup&amp;nbsp;&lt;/P&gt;&lt;P&gt;The workspace KDP-Dev has identity enabled and the app registration has directory.read permission granted&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Workspace KDP-Dev I have a warehouse called 'kdp-dev-dwh' andf the SP used by DevOps is added as workspace admin, i.e. it will be allowed to run the necessary sql commands&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the code below to simulate running the sql command&amp;nbsp;"alter role [role_read_meta] add member [kdp-dev-pyfunc]" from DevOps. where&amp;nbsp;kdp-dev-pyfunc is the managed identity of a azure function app I want to give access over a specific schema in the Warehouse&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Import-Module SqlServer

$userContext = Get-AzContext
$devopsSP = Get-AzADServicePrincipal -DisplayName "kdp-devops-sp-test"
$warehouseObject = Get-KAzFabricWarehouse -WorkspaceName "KDP-Dev" -WarehouseName "kdp-dev-dwh"

$tenant = $userContext.Tenant.Id
$appKey = Read-Host -AsSecureString -Prompt "DevOps SP client secret"
$appId = $devopsSP.AppId
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $appId, $appKey

$devopsContext = Connect-AzAccount -ServicePrincipal -TenantId $tenant -Credential $Credential -ContextName "DevOpsSP"
$sqlArgs = @{
  ServerInstance = $warehouseObject.properties.connectionString
  Database = $warehouseObject.displayName
  AccessToken = (Get-AzAccessToken -ResourceUrl "https://database.windows.net/" -DefaultProfile $devopsContext).Token
}
#NOTE: Adding user [kdp-dev-pyfunc] to the SQL role should create the user but instead it fails
$sqlcmd = "alter role [role_read_meta] add member [kdp-dev-pyfunc]"
Invoke-SqlCmd @sqlArgs -Query $sqlcmd&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would expect the code above to run without any issues but instead I get the error&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Invoke-Sqlcmd: 
Line |
   8 |  Invoke-SqlCmd @sqlArgs -Query $sqlcmd
     |  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     | Principal 'kdp-dev-pyfunc' could not be resolved. Error message: 'Server identity is not configured. Please follow the steps in "Assign an Azure AD identity to your server and add Directory Reader permission to your identity" (https://aka.ms/sqlaadsetup)' 
 Msg 33134, Level 16, State 72, Procedure , Line 1.&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I run the SQL command with an access token generate with my own user account, then the users gets created and the role assigned.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;$sqlArgs = @{
  ServerInstance = $warehouseObject.properties.connectionString
  Database = $warehouseObject.displayName
  AccessToken = (Get-AzAccessToken -ResourceUrl "https://database.windows.net/" -DefaultProfile $userContext).Token
}
$sqlcmd = "alter role [role_read_meta] add member [kdp-dev-pyfunc]"
Invoke-SqlCmd @sqlArgs -Query $sqlcmd&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, as far I can tell I am doing everything as per documentation&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 12:34:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4794469#M11674</guid>
      <dc:creator>albosta</dc:creator>
      <dc:date>2025-08-12T12:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4795418#M11699</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;It’s failing because when you try to give a user or service principal access inside Fabric Warehouse, the Warehouse itself needs to look up that account in Entra ID. It does this using its own Managed Identity, not the service principal you’re calling from DevOps.&lt;/P&gt;
&lt;P&gt;If that Managed Identity doesn’t have permission to read Entra ID, the lookup fails, and you get the “Principal could not be resolved” error.&lt;/P&gt;
&lt;P&gt;You can try fixing it with below steps:&lt;/P&gt;
&lt;P&gt;Turn on the Managed Identity for the Workspace that has your Warehouse.In Entra ID, give that Managed Identity the Directory Readers role.Also give it Microsoft Graph – Directory.Read.All (Application permission) and grant admin consent.Wait 15–20 minutes for the permissions to take effect.&lt;/P&gt;
&lt;P&gt;Run your ALTER ROLE ... ADD MEMBER ... from DevOps again - no need to manually create the user, Fabric will do it automatically.&lt;/P&gt;
&lt;P&gt;Points to remember:&lt;/P&gt;
&lt;P&gt;The Warehouse’s Managed Identity is the “middleman” that talks to Entra ID.Your DevOps service principal just needs permission to run SQL - the lookup permissions belong to the Warehouse’s identity.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some Microsoft Documentations for your reference:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/security/workspace-identity" target="_blank"&gt;Workspace identity - Microsoft Fabric | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/azure-sql/database/authentication-aad-directory-readers-role?view=azuresql" target="_blank"&gt;Directory Readers Role in Microsoft Entra ID for Azure SQL - Azure SQL Database &amp;amp; Azure SQL Managed Instance | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/azure/azure-sql/database/authentication-azure-ad-user-assigned-managed-identity?view=azuresql" target="_blank"&gt;Managed identity in Microsoft Entra for Azure SQL - Azure SQL Database &amp;amp; Azure SQL Managed Instance | Microsoft Learn&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 08:31:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4795418#M11699</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-08-13T08:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4799558#M11787</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided and resolve the issue..?Please let us know if you need any further assistance.We are happy to help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Aug 2025 09:02:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4799558#M11787</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-08-18T09:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4803238#M11860</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;May I ask if you have resolved this issue? Please let us know if you have any further issues, we are happy to help.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 07:39:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4803238#M11860</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-08-21T07:39:49Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4806316#M11918</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I hope the information provided is helpful.I wanted to check whether you were able to resolve the issue with the provided solutions.Please let us know if you need any further assistance.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Aug 2025 06:41:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4806316#M11918</guid>
      <dc:creator>v-venuppu</dc:creator>
      <dc:date>2025-08-25T06:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: automate object level tsql permissions in fabric data warehouse</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4862019#M13165</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="704301" data-lia-user-login="albosta" class="lia-mention lia-mention-user"&gt;albosta&lt;/a&gt;&amp;nbsp;Were you able to find a solution to get this working? I am kinda stuck in a similar situation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 03:26:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Engineering/automate-object-level-tsql-permissions-in-fabric-data-warehouse/m-p/4862019#M13165</guid>
      <dc:creator>sarav_s</dc:creator>
      <dc:date>2025-10-30T03:26:50Z</dc:date>
    </item>
  </channel>
</rss>

