<?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: Timeout reading data from sql database in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56727#M10860</link>
    <description>Execution timeout expired means that the query took too long to complete. Reading 90,000 records may have run under that time whereas 130,000 records pushed it to the timeout limit. The Data - SQL Server is using a SqlCommand object to run the query, which has a default timeout of 30 seconds. I don't believe the Data - SQL Server object has a way to change the timeout (I could be wrong, I have an old version of it).&lt;BR /&gt;&lt;BR /&gt;What I would suggest is making a copy of the Data - SQL Server object and include a custom timeout option.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nicholas Zejdlik&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 23 Sep 2020 13:17:00 GMT</pubDate>
    <dc:creator>NicholasZejdlik</dc:creator>
    <dc:date>2020-09-23T13:17:00Z</dc:date>
    <item>
      <title>Timeout reading data from sql database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56726#M10859</link>
      <description>Hi Blueprism team I have an errormessage when trying to read data from sql database with 130.000 records to a collection&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;object: Get Collection&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="13179.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/13339i04A240FC5ECB119A/image-size/large?v=v2&amp;amp;px=999" role="button" title="13179.png" alt="13179.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;Errormessage&lt;BR /&gt;Execution timeout has expired. The timeout period expired before the operation was performed or the server did not respond.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Working fine with data from sql database with 90.000 records.&lt;BR /&gt;&lt;BR /&gt;Is there a limit reading records from sql database.?&lt;BR /&gt;&lt;BR /&gt;greetings Kristian&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Kristian Holm&lt;BR /&gt;RPA programmer&lt;BR /&gt;PenSam (Pension Company)&lt;BR /&gt;Copenhagen Denmark&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Sep 2020 08:07:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56726#M10859</guid>
      <dc:creator>KristianHolm1</dc:creator>
      <dc:date>2020-09-23T08:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: Timeout reading data from sql database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56727#M10860</link>
      <description>Execution timeout expired means that the query took too long to complete. Reading 90,000 records may have run under that time whereas 130,000 records pushed it to the timeout limit. The Data - SQL Server is using a SqlCommand object to run the query, which has a default timeout of 30 seconds. I don't believe the Data - SQL Server object has a way to change the timeout (I could be wrong, I have an old version of it).&lt;BR /&gt;&lt;BR /&gt;What I would suggest is making a copy of the Data - SQL Server object and include a custom timeout option.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nicholas Zejdlik&lt;BR /&gt;RPA Developer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Sep 2020 13:17:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56727#M10860</guid>
      <dc:creator>NicholasZejdlik</dc:creator>
      <dc:date>2020-09-23T13:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: Timeout reading data from sql database</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56728#M10861</link>
      <description>Hi Kristian,&lt;BR /&gt;&lt;BR /&gt;Nicholas has provided a good answer about why you are getting your timeout error. There is no hard limit on the amount of data we can query because it all depends on the amount of data included in the query such as row/column counts and amount of data in each.&lt;BR /&gt;&lt;BR /&gt;We do have a way to increase the timeout and it is documented here: &lt;A href="https://portal.blueprism.com/customer-support/support-center#/path/Operational-Support/Performance/Database-Management/1360595772/Why-do-I-get-Execution-Timeout-Expired-The-timeout-period-elapsed-prior-to-completion-of-the-operation-or-the-server-is-not-responding-when-connecting-with-OLEDB.htm" target="_blank" rel="noopener" title="Why do I get &amp;quot;Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding.&amp;quot; when connecting with OLEDB?"&gt;https://portal.blueprism.com/customer-support/support-center#/path/Operational-Support/Performance/Database-Management/1360595772/Why-do-I-get-Execution-Timeout-Expired-The-timeout-period-elapsed-prior-to-completion-of-the-operation-or-the-server-is-not-responding-when-connecting-with-OLEDB.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I would advise to not make this an unlimited amount of time because then you could have an issue where the query is hung and your process will keep running until someone intervenes.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Gabe Marquez&lt;BR /&gt;Technical Support Engineer&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Sep 2020 15:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Timeout-reading-data-from-sql-database/m-p/56728#M10861</guid>
      <dc:creator>gmarquez</dc:creator>
      <dc:date>2020-09-23T15:58:00Z</dc:date>
    </item>
  </channel>
</rss>

