<?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: tSQLiteInput and terminated tSQLiteConnection in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323043#M92929</link>
    <description>You can open/close connection per iteration . There won't be performance impact.&lt;BR /&gt;&lt;BR /&gt;Yes I/O may impact, if you are running iterations in parallel. But sqlite won't complain ,since it always does write work for 1 connection/process/thread at a time, while read operations can be done in parallel.</description>
    <pubDate>Mon, 13 Nov 2017 14:00:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-11-13T14:00:34Z</dc:date>
    <item>
      <title>tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323038#M92924</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My&amp;nbsp;tSQLiteInput uses an existing&amp;nbsp;tSQLiteConnection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In certain circumstances the&amp;nbsp;tSQLiteConnection is beeing&amp;nbsp;terminated and my&amp;nbsp;tSQLiteInput throws an exception because of missing connection and my job stops running.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is there any way to reopen the connection when it has been terminated?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you and best regards.&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>Thu, 09 Nov 2017 15:35:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323038#M92924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-09T15:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323039#M92925</link>
      <description>Instead of using existing connection, you can provide 
&lt;BR /&gt;connection details in input explicitly . it will cost you 0 to always open a new connection, in the case of sqlite db.</description>
      <pubDate>Fri, 10 Nov 2017 00:41:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323039#M92925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-10T00:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323040#M92926</link>
      <description>Hello Chirgal. Why you mean that it costs me 0 if I access the file each iteration of around 200k iterations each hour?&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;</description>
      <pubDate>Mon, 13 Nov 2017 12:37:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323040#M92926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T12:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323041#M92927</link>
      <description>Sqlite db are server less and based on local file only. R u really connecting to any external server while opening connection?</description>
      <pubDate>Mon, 13 Nov 2017 13:01:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323041#M92927</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T13:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323042#M92928</link>
      <description>&lt;P&gt;Hello, I know that sqlite is file based. But file i/o also takes time. db file is stored on a netshare...&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2017 13:03:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323042#M92928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T13:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323043#M92929</link>
      <description>You can open/close connection per iteration . There won't be performance impact.&lt;BR /&gt;&lt;BR /&gt;Yes I/O may impact, if you are running iterations in parallel. But sqlite won't complain ,since it always does write work for 1 connection/process/thread at a time, while read operations can be done in parallel.</description>
      <pubDate>Mon, 13 Nov 2017 14:00:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323043#M92929</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-13T14:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: tSQLiteInput and terminated tSQLiteConnection</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323044#M92930</link>
      <description>&lt;P&gt;This doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I run into "locked database" exeption quite fast.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Filehandler seems to keep it locked longer than an iteration takes...&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>Thu, 07 Dec 2017 15:49:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tSQLiteInput-and-terminated-tSQLiteConnection/m-p/2323044#M92930</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-07T15:49:02Z</dc:date>
    </item>
  </channel>
</rss>

