Share via

SSRS with Fabric as a source

BharathKumarS-1759 65 Reputation points
2026-02-26T13:56:01.9033333+00:00

Hi All,

Is it possible to have a Fabric SQL database/ Fabric warehouse as a datasource for SSRS report?

There is no proper documentation which I could see across. Fabric sources doesn't support SQL auth,

So is it possible to access them via SSRS via service principle or OAUTh?

SQL Server Reporting Services
SQL Server Reporting Services

A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.

0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Marcin Policht 82,360 Reputation points MVP Volunteer Moderator
    2026-02-26T14:42:00.8266667+00:00

    You could create a middle-tier service or custom SSRS data extension that handles Entra ID authentication, acquires an access token, and then passes queries to the Fabric warehouse using that token. For example, in C# you might acquire a token using the Microsoft.Identity.Client library and then use it in your connection string as a bearer token:

    var app = ConfidentialClientApplicationBuilder.Create(clientId)
    

    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.