<?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: an error occured within the report server database in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2725186#M25435</link>
    <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you for these explanations.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;We do all these actions and I come back to the forum for feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Aug 2022 07:30:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-25T07:30:12Z</dc:date>
    <item>
      <title>an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2717801#M25381</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I moved the database off powerBI server (on premise) to another server with sql 2019, and now the schedule doesn't work anymore. I have an error message : "an error occured within the report server database. this may be due to a connection failure...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;before the change of location of the database, the planning was working well.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;what should be checked?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I have to reinstall the power BI server for everything to work properly?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;rights issue?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;i don't how to reslove my problem&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;version of power bi report server :&amp;nbsp;&lt;SPAN&gt;Version&lt;/SPAN&gt;&lt;SPAN&gt;1.12.7981.11681&lt;/SPAN&gt;&lt;SPAN&gt;(September 2021)&lt;/SPAN&gt;&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, 22 Aug 2022 15:49:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2717801#M25381</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-22T15:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2719429#M25392</link>
      <description>&lt;P&gt;Hi, did you also migrate the SQL Server Agent Jobs? PowerBI RS creates an SQL Server Agent Jobs for each schedule.&lt;/P&gt;&lt;P&gt;The name of the job is a GUID created by PBIRS.&lt;/P&gt;&lt;P&gt;You can query the ID's with this statement:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SELECT [ScheduleID] --&amp;gt; Name of job
      ,[ReportID]
	  ,c.Name
      ,[SubscriptionID] --&amp;gt; This id needs to be passed in the procedure
      ,[ReportAction]
  FROM [pbiReportServer].[dbo].[ReportSchedule] r
  LEFT JOIN [pbiReportServer].[dbo].[Catalog] c ON r.ReportID = c.ItemID
  ORDER BY Name asc&lt;/LI-CODE&gt;&lt;P&gt;Within the job there is only one step of type T-SQL with this command&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;exec [pbiReportServer].dbo.AddEvent @EventType='DataModelRefresh', @EventData='INSERT Subscription ID'&lt;/LI-CODE&gt;&lt;P&gt;Hope this helps&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 08:22:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2719429#M25392</guid>
      <dc:creator>whereismydata</dc:creator>
      <dc:date>2022-08-23T08:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2720989#M25414</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you for these explanations,&amp;nbsp;&lt;SPAN&gt;this will allow us to move forward in the solution&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;we are going to migrate the SQL Server Agent jobs with the database administrators.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I'll run the T-SQL next&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;I will post after these actions&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2022 16:29:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2720989#M25414</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-23T16:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2723446#M25425</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;We&amp;nbsp;&lt;SPAN&gt;migrate the SQL Server Agent Jobs, and&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and we execute the TSQL command like your example,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but we have the same error : we can't&amp;nbsp; modify the plannification&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do I determine what is not working ? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;is it necessary to re install server power bi ?&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;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 13:31:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2723446#M25425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-24T13:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2725148#M25433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;，&lt;/P&gt;
&lt;P&gt;What you can do if you get the above message is:&lt;/P&gt;
&lt;P&gt;1. Ensure that SQL Server Reporting Services (SSRS) are up and running.&lt;/P&gt;
&lt;P&gt;2. Ensure that the user with which you are accessing the relevant reports has Folder/Report permissions to do so.&lt;/P&gt;
&lt;P&gt;3. Ensure that the SSRS instance’s service account (can be found in SQL Server Configuration Manager or SQL Server Reporting Services Configuration Manager) has db_owner access to the respective ReportServer and ReportServerTempDB databases.&lt;/P&gt;
&lt;P&gt;And you can further troubleshoot using the below steps:&lt;/P&gt;
&lt;P&gt;In SQL Server Configuration Manager, navigate to “SQL Server Services”, then right-click on the SQL Server Reporting Service and on the “Advanced” tab, find the Dump Directory path.&lt;/P&gt;
&lt;P&gt;Via Windows Explorer, navigate to the the Dump Directory folder (that is actually the location of the SSRS instance’s log files), try to reproduce the problem and then directly open the latest log file. Check the entries in the log file, where in addition to the above message, you will also find more details. For example you might see the additional error message: “The transaction log for database ‘ReportServer’ is full“….&lt;/P&gt;
&lt;P&gt;If you indeed find the error about the transaction log, then it is crystal clear that you need to check the database server onto which the ReportServer database is hosted, for disk space issues. In this case, you need to check the drive that hosts the transaction log file for the “ReportServer” database. If you cannot shrink other log files and thus return space back to OS for further use by the transaction log of database “ReportServer”, then you will need to add more space to the disk.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you could tryto grant sysadmin Privilege to Report server service account.&lt;/P&gt;
&lt;P&gt;Similar question refer:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://social.technet.microsoft.com/Forums/ie/en-US/8decb9e2-ce0f-4f5a-a6ab-4ed2a7fe21e0/an-error-occurred-within-the-report-server-database-this-may-be-due-to-a-connection-failure?forum=sqlreportingservices" target="_blank"&gt;https://social.technet.microsoft.com/Forums/ie/en-US/8decb9e2-ce0f-4f5a-a6ab-4ed2a7fe21e0/an-error-occurred-within-the-report-server-database-this-may-be-due-to-a-connection-failure?forum=sqlreportingservices&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.sqlnethub.com/blog/an-error-occurred-within-the-report-server-database-this-may-be-due-to-a-connection-failure-timeout-or-low-disk-condition-within-the-database/" target="_blank"&gt;https://www.sqlnethub.com/blog/an-error-occurred-within-the-report-server-database-this-may-be-due-to-a-connection-failure-timeout-or-low-disk-condition-within-the-database/&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did I answered your question?Pls mark my reply as a answer.&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;Best Regards&lt;/P&gt;
&lt;P&gt;Lucien&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 07:16:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2725148#M25433</guid>
      <dc:creator>v-luwang-msft</dc:creator>
      <dc:date>2022-08-25T07:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2725186#M25435</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you for these explanations.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;We do all these actions and I come back to the forum for feedback&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 07:30:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2725186#M25435</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-25T07:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: an error occured within the report server database</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2744287#M25542</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;it was not possible to correct the schedule update problem.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Another power BI server install was done and now everything is working&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thank you for these advices which made it possible to find a solution&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 19:08:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/an-error-occured-within-the-report-server-database/m-p/2744287#M25542</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-02T19:08:49Z</dc:date>
    </item>
  </channel>
</rss>

