<?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 Re: Where Can I find the published report in PowerBI Server in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/1264295#M15367</link>
    <description>&lt;P&gt;Stpnet,&lt;/P&gt;&lt;P&gt;you saved my life with this script.&lt;/P&gt;&lt;P&gt;I Just changed the connection string as follow :&amp;nbsp;&lt;/P&gt;&lt;P&gt;$con.ConnectionString = "Data Source=$server;Initial Catalog=$database;Integrated Security=False; User ID=sa;Password=mypass;";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it perfectly worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot !&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jul 2020 08:34:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-31T08:34:42Z</dc:date>
    <item>
      <title>Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/396676#M5105</link>
      <description>&lt;P&gt;Hi experts,&lt;BR /&gt;&lt;BR /&gt;Could you please help me to find the publised report in PowerBI report server?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to find the published report in PBIRS folder in PowerBI Server, but i couldn't. Where the publish report get stored in report server?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 15 Apr 2018 17:57:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/396676#M5105</guid>
      <dc:creator>Miruthan</dc:creator>
      <dc:date>2018-04-15T17:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397091#M5116</link>
      <description>&lt;P&gt;The data about what is stored is in the &lt;STRONG&gt;dbo.catalog&lt;/STRONG&gt; table in the ReportServer database. The actual report definition is in the&amp;nbsp;&lt;STRONG&gt;dbo.CatalogItemExtendedContent&lt;/STRONG&gt; table. You link them on the &lt;STRONG&gt;itemID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think you get PBIX files on disk anywhere. i certainly haven't been able to find any.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The column you need from&amp;nbsp;&lt;STRONG&gt;dbo.CatalogItemExtendedContent&amp;nbsp;&lt;/STRONG&gt; is the &lt;STRONG&gt;Content&lt;/STRONG&gt; column and you select it with somehting like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SELECT	CT.[Path]
        ,CT.[Type]
		,cc.ContentType
        ,CONVERT(varbinary(max), cc.[Content]) AS BinaryContent
FROM dbo.[Catalog] AS CT
		LEFT OUTER JOIN dbo.CatalogItemExtendedContent cc
			ON ct.ItemID = cc.ItemId
WHERE CT.[Type] IN (13) -- this idicates a PBI report
	AND ct.ContentType = 'CatalogItem'
AND ct.ItemID = 'AE1BC1C9-BB25-4D4C-AFD5-2A1AC49C281F'&lt;/PRE&gt;&lt;P&gt;You can use some PowerShell to export the results of this query (much as you could do with old RDL and RDS data) Essentially if you save the BInaryContent to&amp;nbsp; a file you shoudl have a working PBIX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are a couple of wrinkles with this that are PBIX specific&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are multiple lines for each report in&amp;nbsp;&lt;STRONG&gt;dbo.CatalogItemExtendedContent &lt;/STRONG&gt;these are for&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CatalogItem&lt;/P&gt;&lt;P&gt;DataModel&lt;/P&gt;&lt;P&gt;PowerBIReportDefinition&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;CatalogItem&lt;/STRONG&gt; seems to be the file you deploy. So this is the one you want to extract. Its the wokring PBIX file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;SPAN&gt;&lt;STRONG&gt;PowerBIReportDefinition&lt;/STRONG&gt; seems to be the same but with the DataModel file removed from the zipped PBIX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The &lt;STRONG&gt;DataModel&lt;/STRONG&gt; is the file that has been extracted out. I assumed this is so you can setup a schedule to refresh the data all on its own and not have to roll it back inside the PBIX definition.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Of course for some PBIX files (those using LiveConnections) there is no &lt;STRONG&gt;DataModel&lt;/STRONG&gt; entry in&amp;nbsp;&lt;STRONG&gt;dbo.CatalogItemExtendedContent&amp;nbsp;&lt;/STRONG&gt;so the Content of the&amp;nbsp;&lt;STRONG&gt;CatalogItem&lt;/STRONG&gt;&amp;nbsp;row and&amp;nbsp;&lt;STRONG&gt;PowerBIReportDefinition&amp;nbsp;&lt;/STRONG&gt;row&amp;nbsp;seem to be the same. Since these kinds of connections cannot be refreshed on a schedule there's no point in having a &lt;STRONG&gt;DataModel&lt;/STRONG&gt; entry. I'm guessing PBI-SSRS just figures this out itself.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you are stuck for tracking down a&amp;nbsp;PowerShell to&amp;nbsp;extract the report def then let me know. We have one that we run every hour so we can keep a backup of all the PBIX files as they change. People overwrite them incorrectly surprisingly frequently. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Some form of version control in the DB would be useful but operational stuff is probably low down the priority list on the dev stack.&lt;/SPAN&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;</description>
      <pubDate>Mon, 16 Apr 2018 11:35:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397091#M5116</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-16T11:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397107#M5123</link>
      <description>stpnet, I am interested in that PowerShell script to extract the report definitions. That sounds like a great way to assist with our source control. :)</description>
      <pubDate>Mon, 16 Apr 2018 12:01:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397107#M5123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-16T12:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397140#M5127</link>
      <description>&lt;P&gt;Its going&amp;nbsp; to look something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;# .SYNOPSIS
      Export of all SSRS reports datasources and images
   .DESCRIPTION
      This PowerShell script exports all (or filtered) reports, data sources and images directly from the ReportServer database
      to a specified folder. For the file name the complete report path is used; for file name invalid characters are replaced with a -.
      Reports are exported with .rdl as extension, data sources with .rds and resources without any additional extension.
      Please change the "Configuration data" below to your enviroment.
      Works with SQL Server 2005 and higher versions in all editions.
      Requires SELECT permission on the ReportServer database.
   .NOTES
      Author  : Olaf Helper
      Requires: PowerShell Version 1.0, Ado.Net assembly
   .LINK
      GetSqlBinary: http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqldatareader.getsqlbinary.aspx
#&amp;gt;


# Configuration data
[string] $server   = "YourServerName";        # SQL Server Instance.
[string] $database = "ReportServer";        # ReportServer Database.
[string] $folder   = "C:\WorkRepo\Export_PBI_SSRS\";          # Path to export the reports to.

# Select-Statement for file name &amp;amp; blob data with filter.	
$sql = "SELECT	CT.[Path]
        ,CT.[Type]
		,ISNULL(cc.ContentType,'SSRS') as ContentType
        ,CONVERT(varbinary(max), cc.[Content]) AS PBI_BinaryContent
        ,CONVERT(varbinary(max), ct.[Content]) AS RDL_BinaryContent
FROM dbo.[Catalog] AS CT
		LEFT OUTER JOIN dbo.CatalogItemExtendedContent cc
			ON ct.ItemID = cc.ItemId
WHERE CT.[Type] IN (2, 8, 5,13)
	AND ISNULL(cc.ContentType,'CatalogItem') = 'CatalogItem'";		
 #       WHERE CT.[Type] IN (8)";

# Open ADO.NET Connection with Windows authentification.
$con = New-Object Data.SqlClient.SqlConnection;
$con.ConnectionString = "Data Source=$server;Initial Catalog=$database;Integrated Security=True;";
$con.Open();

Write-Output ((Get-Date -format yyyy-MM-dd-HH:mm:ss) + ": Started ...");

# New command and reader.
$cmd = New-Object Data.SqlClient.SqlCommand $sql, $con;
$rd = $cmd.ExecuteReader();

$invalids = [System.IO.Path]::GetInvalidFileNameChars();
# Looping through all selected datasets.
While ($rd.Read())
{
    Try
    {
        # Get the name and make it valid.
        $name = $rd.GetString(0);
		Write-Output "fetching $name"
        foreach ($invalid in $invalids)
           {    $name = $name.Replace($invalid, "-");    }

        If ($rd.GetInt32(1) -eq 2)
            {    $name = $name + ".rdl";    }
        ElseIf ($rd.GetInt32(1) -eq 5)
            {    $name = $name + ".rds";    }
        ElseIf ($rd.GetInt32(1) -eq 8)
            {    $name = $name + ".rsd";    }
        ElseIf ($rd.GetInt32(1) -eq 11)
            {    $name = $name + ".kpi";    }
        ElseIf ($rd.GetInt32(1) -eq 13)
	    {   $name = $name + ".pbix";    }

			
			
        Write-Output ((Get-Date -format yyyy-MM-dd-HH:mm:ss) + ": Exporting {0}" -f $name);

        $name = [System.IO.Path]::Combine($folder, $name);

        # New BinaryWriter; existing file will be overwritten.
        $fs = New-Object System.IO.FileStream ($name), Create, Write;
        $bw = New-Object System.IO.BinaryWriter($fs);

        # Read of complete Blob with GetSqlBinary
        if ($rd.GetString(2) -eq "SSRS") {
			$bt = $rd.GetSqlBinary(4).Value;
		} else{
			$bt = $rd.GetSqlBinary(3).Value;
		}
		
		
        $bw.Write($bt, 0, $bt.Length);
        $bw.Flush();
        $bw.Close();
        $fs.Close();
    }
    Catch
    {
        Write-Output ($_.Exception.Message)
    }
    Finally
    {
        $fs.Dispose();
    }
}

# Closing &amp;amp; Disposing all objects
$rd.Close();
$cmd.Dispose();
$con.Close();
$con.Dispose();

Write-Output ((Get-Date -format yyyy-MM-dd-HH:mm:ss) + ": Finished");&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Apr 2018 12:34:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397140#M5127</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-16T12:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397143#M5128</link>
      <description>&lt;P&gt;Sorry Just realised you were looking for the version control script we use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its basically the same we just assemble the SQL with a where clause looking at both the &lt;STRONG&gt;Created&lt;/STRONG&gt; and &lt;STRONG&gt;Modified&lt;/STRONG&gt; columns in &lt;STRONG&gt;dbo.catalog&lt;/STRONG&gt;. Anything that has changed in the last hour and a bit (we schedule the script to run every hour)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We also add a timestamp&amp;nbsp;to the path for the output so we know when we exported it out. You have to manage the output location of course otherwise it just grows for the rest of history. But there are Pshell script to delete stuff older than x days out there on the interent.&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;</description>
      <pubDate>Mon, 16 Apr 2018 12:38:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397143#M5128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-16T12:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397517#M5148</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt; Anonymous&lt;/LI-USER&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any possibilities to update the connection string our powerbi report without opening the file in powerBI desktop using powerShell script?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 23:40:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397517#M5148</guid>
      <dc:creator>Miruthan</dc:creator>
      <dc:date>2018-04-16T23:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397968#M5165</link>
      <description>&lt;P&gt;I suspect not though it may depend on what type of connection you have.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are using Live Query then the connection is stored inside the PBIX file, so you could unzip it, alter the connection details and rezip it. I have no idea if this would work as I have no practical way of testing this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For other data sources&amp;nbsp;the DataMashup is zipped and has some encodings beyond the end of the archive. So though you can Unzip it and access the M scripts which have the connection settings in them you can't then zip it back up and produce a useable PBIX file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So overall the answer is probably no. If you have imported data and want to schedule a refresh you can of course change the connection details in the data source of the deployed PBIX...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 09:54:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/397968#M5165</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-17T09:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/398026#M5168</link>
      <description>Thanks for this script. It is life-changing</description>
      <pubDate>Tue, 17 Apr 2018 11:06:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/398026#M5168</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-17T11:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/398030#M5169</link>
      <description>&lt;P&gt;LOL! You need to get out more! Mark it as an answer if its useful&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2018 11:10:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/398030#M5169</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-17T11:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/1264295#M15367</link>
      <description>&lt;P&gt;Stpnet,&lt;/P&gt;&lt;P&gt;you saved my life with this script.&lt;/P&gt;&lt;P&gt;I Just changed the connection string as follow :&amp;nbsp;&lt;/P&gt;&lt;P&gt;$con.ConnectionString = "Data Source=$server;Initial Catalog=$database;Integrated Security=False; User ID=sa;Password=mypass;";&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and it perfectly worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot !&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 08:34:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/1264295#M15367</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-31T08:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/1973315#M20241</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Thanks for sharing this script just saved my day... I was having an issue with my PowerBI Report server and needed reinstall it but was concerning about the backup of the reports and this is one of the easiest ways to backup it and also to facilitate the restore if a user simply delete or mess up the reports &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 12:32:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/1973315#M20241</guid>
      <dc:creator>leandrosardinha</dc:creator>
      <dc:date>2021-07-22T12:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/2184591#M21694</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for all you sharing.&lt;BR /&gt;I do not want to export a PBIX file.&amp;nbsp;&lt;BR /&gt;I just need to run a query against the data of a particular reports metadata, which I understand now to be available within the binary data of content field of&amp;nbsp;CatalogItemExtendedContent table.&lt;BR /&gt;&lt;BR /&gt;Could you help with that?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Nov 2021 07:06:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/2184591#M21694</guid>
      <dc:creator>vissvess</dc:creator>
      <dc:date>2021-11-11T07:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Where Can I find the published report in PowerBI Server</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/2186373#M21719</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="149826" data-lia-user-login="vissvess" class="lia-mention lia-mention-user"&gt;vissvess&lt;/a&gt;&amp;nbsp; unfortunately Report Server does not provide any api calls that you can use to query either the data or metadata in a pbix report.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Nov 2021 02:11:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Where-Can-I-find-the-published-report-in-PowerBI-Server/m-p/2186373#M21719</guid>
      <dc:creator>d_gosbell</dc:creator>
      <dc:date>2021-11-12T02:11:19Z</dc:date>
    </item>
  </channel>
</rss>

