<?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: Get all connection string for reports from power bi report server reportserver database in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2331775#M22872</link>
    <description>&lt;P&gt;Use standard PBIRS API, you can use e.g. PowerShell or Power BI Odata feed.&lt;/P&gt;
&lt;P&gt;if odata feed, use&amp;nbsp;&lt;A href="https://server/reports/api/v2.0/" target="_blank"&gt;https://servername/reports/api/v2.0/&lt;/A&gt;&amp;nbsp; URL and after navigate to&amp;nbsp;PowerBIReports object&lt;/P&gt;</description>
    <pubDate>Thu, 10 Feb 2022 21:06:53 GMT</pubDate>
    <dc:creator>josef78</dc:creator>
    <dc:date>2022-02-10T21:06:53Z</dc:date>
    <item>
      <title>Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/920392#M12881</link>
      <description>&lt;P&gt;we try to get all connection string for all reports in power bi report server reportserver database.&amp;nbsp;reportserver.dbo.DataModelDataSource table has all connection string, but it is encrypted, how we decrypt it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 23:48:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/920392#M12881</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-03T23:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/920746#M12886</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use the OData connector with the report server API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add your report server URL to this in the two places marked:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;let

    Source = OData.Feed("https://&amp;lt;YOUR URL&amp;gt;/pbireports/api/v2.0/PowerBIReports", null, [Implementation="2.0"]),

    #"Expanded DataSources" = Table.ExpandTableColumn(Source, "DataSources", {"Id", "ModifiedBy", "ModifiedDate", "ConnectionString", "DataModelDataSource"}, {"DataSources.Id", "DataSources.ModifiedBy", "DataSources.ModifiedDate", "DataSources.ConnectionString", "DataSources.DataModelDataSource"}),

    #"Expanded DataSources.DataModelDataSource" = Table.ExpandRecordColumn(#"Expanded DataSources", "DataSources.DataModelDataSource", {"Type", "Kind", "AuthType", "Username", "ModelConnectionName"}, {"DataSources.DataModelDataSource.Type", "DataSources.DataModelDataSource.Kind", "DataSources.DataModelDataSource.AuthType", "DataSources.DataModelDataSource.Username", "DataSources.DataModelDataSource.ModelConnectionName"}),

    #"Added Conditional Column" = Table.AddColumn(#"Expanded DataSources.DataModelDataSource", "DS.Connection_String", each if [DataSources.ConnectionString] = null then "No Data Source" else [DataSources.ConnectionString]),

    #"Removed Columns" = Table.RemoveColumns(#"Added Conditional Column",{"CacheRefreshPlans", "AccessToken", "Roles", "ContentType", "Content", "ParentFolder", "Properties", "Comments", "AlertSubscriptions", "AllowedActions", "Policies", "DependentItems","Id", "ParentFolderId", "DataSources.Id", "DataSources.DataModelDataSource.ModelConnectionName"}),

    #"Renamed Columns" = Table.RenameColumns(#"Removed Columns",{{"DataSources.ConnectionString", "DS.ConnectionString"}, {"DataSources.DataModelDataSource.Type", "DS.Type"}, {"DataSources.DataModelDataSource.Kind", "DS.Kind"}, {"DataSources.DataModelDataSource.AuthType", "DS.AuthType"}, {"DataSources.DataModelDataSource.Username", "DS.Username"}, {"DataSources.ModifiedBy", "DS.ModifiedBy"}, {"DataSources.ModifiedDate", "DS.ModifiedDate"}, {"Name", "Report"}, {"Path", "Report Path"}}),

    #"Add Report URL" = Table.AddColumn(#"Renamed Columns", "Report URL", each "https://&amp;lt;YOUR URL&amp;gt;/PBIReports/powerbi" &amp;amp; [Report Path] &amp;amp; "?rs:embed=true")

in

    #"Add Report URL"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2020 07:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/920746#M12886</guid>
      <dc:creator>CDavies</dc:creator>
      <dc:date>2020-02-04T07:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/1228316#M15074</link>
      <description>&lt;P&gt;does this work for anyone? I get an invalid character message after creating a .pbids with this....I also have a need to see all the unencrypted data sources and unable to get it to work?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Jul 2020 13:29:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/1228316#M15074</guid>
      <dc:creator>gregHM</dc:creator>
      <dc:date>2020-07-16T13:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/1230157#M15085</link>
      <description>&lt;P&gt;Have a look at those links&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="List connection strings of all SSRS Shared Datasources" href="https://gallery.technet.microsoft.com/scriptcenter/List-connection-strings-of-1a9a9adc" target="_blank" rel="noopener"&gt;List connection strings of all SSRS Shared Datasources&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="decipher ReportServer.DataSource.ConnectionString" href="https://www.sqlservercentral.com/forums/topic/decipher-reportserver-datasource-connectionstring" target="_blank" rel="noopener"&gt;decipher ReportServer.DataSource.ConnectionString&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="Show connection string in the report?" href="https://stackoverflow.com/questions/21283317/show-connection-string-in-the-report" target="_blank" rel="noopener"&gt;Show connection string in the report?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&lt;STRONG&gt;If my post solved your problem, mark my post as a solution to help others to quickly find it and also please give it a &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Jul 2020 06:51:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/1230157#M15085</guid>
      <dc:creator>saglamtimur</dc:creator>
      <dc:date>2020-07-17T06:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2327556#M22841</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="115547" data-lia-user-login="CDavies" class="lia-mention lia-mention-user"&gt;CDavies&lt;/a&gt;&amp;nbsp; Hi, when i choose Odate feed (Get Data) from Power Bi, a message popup with credentials error, when i choose windows credentials, it says use anonamous, when i choose anonamous it throws an error,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 07:52:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2327556#M22841</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-09T07:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2331775#M22872</link>
      <description>&lt;P&gt;Use standard PBIRS API, you can use e.g. PowerShell or Power BI Odata feed.&lt;/P&gt;
&lt;P&gt;if odata feed, use&amp;nbsp;&lt;A href="https://server/reports/api/v2.0/" target="_blank"&gt;https://servername/reports/api/v2.0/&lt;/A&gt;&amp;nbsp; URL and after navigate to&amp;nbsp;PowerBIReports object&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 21:06:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2331775#M22872</guid>
      <dc:creator>josef78</dc:creator>
      <dc:date>2022-02-10T21:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2533598#M24277</link>
      <description>&lt;P&gt;It worked for me. Thanks,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="115547" data-lia-user-login="CDavies" class="lia-mention lia-mention-user"&gt;CDavies&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 May 2022 14:04:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/2533598#M24277</guid>
      <dc:creator>DMarcio</dc:creator>
      <dc:date>2022-05-23T14:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Get all connection string for reports from power bi report server reportserver database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/3479021#M31431</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried using&amp;nbsp;above&amp;nbsp;&lt;SPAN&gt;the OData connector with the report server API method and code, but it's throwing below error message when apply the change on Power Query Editor, could you please help me in this fixing this error. Thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&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;</description>
      <pubDate>Mon, 16 Oct 2023 13:47:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Get-all-connection-string-for-reports-from-power-bi-report/m-p/3479021#M31431</guid>
      <dc:creator>Gopikrishna-J</dc:creator>
      <dc:date>2023-10-16T13:47:46Z</dc:date>
    </item>
  </channel>
</rss>

