<?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: Power BI Report Schedule Refresh Error in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4054849#M36102</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the performance metrics of the database server. Look for high CPU, memory utilization, or I/O wait times, which may indicate a performance bottleneck.&lt;BR /&gt;Make sure the database server has enough resources (CPU, memory, disk space) to handle the load.&lt;BR /&gt;Check the timeout settings in the Power BI Reporting Server and Database Server. If necessary, adjust these settings to ensure that operations have enough time to complete. If applicable, increase the CommandTimeout property in the data source connection string.&lt;BR /&gt;Test the database connection:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# Example PowerShell command to test SQL Server connection
$connectionString = "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;"
$connection = New-Object System.Data.SqlClient.SqlConnection
$connection.ConnectionString = $connectionString
try {
    $connection.Open()
    Write-Host "Connection successful!"
} catch {
    Write-Host "Connection failed: $_"
} finally {
    $connection.Close()
}&lt;/LI-CODE&gt;&lt;P&gt;Use SQL Server Management Studio (SSMS) to monitor database server performance. Execute queries to check disk space and performance metrics.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;-- Check disk space
EXEC xp_fixeddrives;

-- Check CPU and memory usage
SELECT 
    sqlserver_start_time, 
    cpu_count, 
    physical_memory_kb 
FROM 
    sys.dm_os_sys_info;&lt;/LI-CODE&gt;&lt;P&gt;Add a timeout setting in the data source connection string&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;CommandTimeout=300;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hackcrr&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;kudos to this post&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2024 00:57:05 GMT</pubDate>
    <dc:creator>hackcrr</dc:creator>
    <dc:date>2024-07-23T00:57:05Z</dc:date>
    <item>
      <title>Power BI Report Schedule Refresh Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4053461#M36096</link>
      <description>&lt;P&gt;&lt;SPAN&gt;In the report server database connection is successful but whenever doing schedule refresh its not connecting. throwing error like "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;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2024 08:25:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4053461#M36096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-22T08:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Report Schedule Refresh Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4054849#M36102</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Check the performance metrics of the database server. Look for high CPU, memory utilization, or I/O wait times, which may indicate a performance bottleneck.&lt;BR /&gt;Make sure the database server has enough resources (CPU, memory, disk space) to handle the load.&lt;BR /&gt;Check the timeout settings in the Power BI Reporting Server and Database Server. If necessary, adjust these settings to ensure that operations have enough time to complete. If applicable, increase the CommandTimeout property in the data source connection string.&lt;BR /&gt;Test the database connection:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;# Example PowerShell command to test SQL Server connection
$connectionString = "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;"
$connection = New-Object System.Data.SqlClient.SqlConnection
$connection.ConnectionString = $connectionString
try {
    $connection.Open()
    Write-Host "Connection successful!"
} catch {
    Write-Host "Connection failed: $_"
} finally {
    $connection.Close()
}&lt;/LI-CODE&gt;&lt;P&gt;Use SQL Server Management Studio (SSMS) to monitor database server performance. Execute queries to check disk space and performance metrics.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;-- Check disk space
EXEC xp_fixeddrives;

-- Check CPU and memory usage
SELECT 
    sqlserver_start_time, 
    cpu_count, 
    physical_memory_kb 
FROM 
    sys.dm_os_sys_info;&lt;/LI-CODE&gt;&lt;P&gt;Add a timeout setting in the data source connection string&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;CommandTimeout=300;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hackcrr&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;and&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;kudos to this post&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;to help the other members find it more quickly&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 00:57:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4054849#M36102</guid>
      <dc:creator>hackcrr</dc:creator>
      <dc:date>2024-07-23T00:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI Report Schedule Refresh Error</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4054871#M36103</link>
      <description>&lt;P&gt;&lt;FONT&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As stated in the error message, this could be due to a connection failure, timeout, or insufficient disk in the database.&lt;/P&gt;
&lt;P&gt;For troubleshooting, you can view the logs related to scheduled refreshes for Power BI reports&lt;BR /&gt;The log files that hold information about scheduled refreshes are RSPowerBI_ logs. They are located in the LogFiles folder of the location where the report server is installed:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;C:\Program Files\Microsoft Power BI Report Server\PBIRS\LogFiles\RSPowerBI_*.log&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can refer to the following link:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/report-server/scheduled-refresh-troubleshoot#tools-for-troubleshooting" target="_blank"&gt;Troubleshoot scheduled refresh in Power BI Report Server - Power BI | Microsoft Learn&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A title="https://community.powerbi.com/t5/community-blog/how-to-get-your-question-answered-quickly/ba-p/38490" href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-Get-Your-Question-Answered-Quickly%2Fba-p%2F38490&amp;amp;data=05%7C02%7Cv-yohua%40microsoft.com%7Ce1106bfabecb4734a5cc08dc2305bc51%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638423754744679080%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=24%2BceC5sFd3n3%2FhFDYILWFcNjCwVClBD%2BPBsSLVfJGk%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to Get Your Question Answered Quickly&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Yongkang Hua&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 01:14:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Power-BI-Report-Schedule-Refresh-Error/m-p/4054871#M36103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-23T01:14:32Z</dc:date>
    </item>
  </channel>
</rss>

