<?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 PowerBi embeded data sources query in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2466870#M23784</link>
    <description>&lt;P&gt;I am looking for a way to query the ReportServer database to find the name of the embeded data sources in a PowerBi report.&amp;nbsp; I know how to do this for SSRS reports, but can't figure out how to get it for PowerBi reports.&lt;/P&gt;</description>
    <pubDate>Wed, 20 Apr 2022 14:51:36 GMT</pubDate>
    <dc:creator>tcschroeder</dc:creator>
    <dc:date>2022-04-20T14:51:36Z</dc:date>
    <item>
      <title>PowerBi embeded data sources query</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2466870#M23784</link>
      <description>&lt;P&gt;I am looking for a way to query the ReportServer database to find the name of the embeded data sources in a PowerBi report.&amp;nbsp; I know how to do this for SSRS reports, but can't figure out how to get it for PowerBi reports.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2022 14:51:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2466870#M23784</guid>
      <dc:creator>tcschroeder</dc:creator>
      <dc:date>2022-04-20T14:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBi embeded data sources query</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2473874#M23830</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="380885" data-lia-user-login="tcschroeder" class="lia-mention lia-mention-user"&gt;tcschroeder&lt;/a&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You could obtain the data source name corresponding to the report in the specified database through the following TSQL query:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; USE [ReportServer]
 GO
    
 SELECT CATALOG.NAME
     ,CATALOG.[Path]
     ,DataSource.NAME datasource
     ,CATALOG.[Description]
     ,Created.UserName AS CreatedByUser
     ,CATALOG.[CreationDate]
     ,Modified.UserName AS ModifiedByUser
     ,CATALOG.[ModifiedDate]
 FROM [dbo].[Catalog]
 LEFT JOIN (
     SELECT [UserID]
         ,[UserName]
     FROM [dbo].[Users]
     ) AS Created ON CATALOG.CreatedByID = Created.UserID
 LEFT JOIN (
     SELECT [UserID]
         ,[UserName]
     FROM [dbo].[Users]
     ) AS Modified ON CATALOG.ModifiedByID = Modified.UserID
 JOIN DataSource ON CATALOG.ItemID = DataSource.ItemID
 JOIN CATALOG cat1 ON DataSource.Link = cat1.ItemID
 WHERE CATALOG.[Type] = 2
 ORDER BY [Path]
     ,NAME&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And you could get data from sql through using Power BI.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Did I answer your question? Mark my post as a solution!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Lucien&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 05:51:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2473874#M23830</guid>
      <dc:creator>v-luwang-msft</dc:creator>
      <dc:date>2022-04-25T05:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBi embeded data sources query</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2475193#M23845</link>
      <description>&lt;P&gt;Actually no.&amp;nbsp; This is showing the data sources for the SSRS reports (.rdl's).&amp;nbsp; That is what I am able to get.&amp;nbsp; What I am interested in is the data sources for PowerBI documents (.pbix).&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:12:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2475193#M23845</guid>
      <dc:creator>tcschroeder</dc:creator>
      <dc:date>2022-04-25T14:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBi embeded data sources query</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2476414#M23857</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="380885" data-lia-user-login="tcschroeder" class="lia-mention lia-mention-user"&gt;tcschroeder&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Power BI Desktop as a tool does not have a corresponding database (like when report server is deployed, a corresponding database is created, so we can look up its data source information via sql). We need to use Power BI Desktop to open the PBIX file and then view the data source through the following interface.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Lucien&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 03:21:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/PowerBi-embeded-data-sources-query/m-p/2476414#M23857</guid>
      <dc:creator>v-luwang-msft</dc:creator>
      <dc:date>2022-04-26T03:21:08Z</dc:date>
    </item>
  </channel>
</rss>

