<?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: Simultaneous Read write data from database and qlikview in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114088#M17644</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No there is not. The db must create an error-message and the used sql-driver must transfer them and then you could fetch them with a query on the ScriptError variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2018 09:48:58 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2018-07-23T09:48:58Z</dc:date>
    <item>
      <title>Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114082#M17638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there anyway we can identify that database table is writing so qlikview need to wait while reading data from that table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For now i am checking with NoOfRows() but, is there any other way that if database table is truncated or data write is not completed then qlikview should skip loading specific table and continue with other tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 07:27:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114082#M17638</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2018-07-23T07:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114083#M17639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is usually taken care by the DBMS or OS upto some extend. Generally, if a table is being written to, it would be locked and read operation would not be allowed to leave users not be worried about the data inconsistency. Qlik user or any tool reading from it for that matter should not have to be worried about&amp;nbsp; it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 07:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114083#M17639</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2018-07-23T07:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114084#M17640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But,in this case when db is writing table and simultaneously qlikview is reading then it will override existing qvd with 0 records that i want to avoid.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 07:58:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114084#M17640</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2018-07-23T07:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114085#M17641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;An alternatively might be to send an error-message drom the db to Qlik if the table is locked and using then ERRORMODE to fetch the error. But I think it's not easier than your noofrows() approach - at least within the first step because you might create some kind of loop repeating the query n times and waiting n seconds between the iterations before skipping the task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 08:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114085#M17641</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-07-23T08:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114086#M17642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess, in that case your &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;NoOfRows() approach would a good one. (as already &lt;A href="https://community.qlik.com/qlik-users/27943"&gt;marcus_sommer&lt;/A&gt;‌ suggested below)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 08:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114086#M17642</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2018-07-23T08:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114087#M17643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any predefined function or can we write anything to identify from qv end that DB table is in writing mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijeta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:36:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114087#M17643</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2018-07-23T09:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114088#M17644</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No there is not. The db must create an error-message and the used sql-driver must transfer them and then you could fetch them with a query on the ScriptError variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 09:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114088#M17644</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-07-23T09:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114089#M17645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can we use NO LOCK in qlikview&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 14:28:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114089#M17645</guid>
      <dc:creator>vijetas42</dc:creator>
      <dc:date>2018-07-23T14:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simultaneous Read write data from database and qlikview</title>
      <link>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114090#M17646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its not a matter of qlik else of the capabilities of the db and the driver.&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2018 17:13:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Simultaneous-Read-write-data-from-database-and-qlikview/m-p/114090#M17646</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-07-23T17:13:21Z</dc:date>
    </item>
  </channel>
</rss>

