<?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: Disable MSSQL transactions in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285753#M59375</link>
    <description>Did you have tested using a separate tMSSQLConnection component and configure it to auto commit.&lt;BR /&gt;Normally this causes no transaction will opened.&lt;BR /&gt;Or in your own Java code try this:&lt;BR /&gt;conn.setAutoCommit(true);</description>
    <pubDate>Wed, 29 Jan 2014 22:37:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-01-29T22:37:38Z</dc:date>
    <item>
      <title>Disable MSSQL transactions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285751#M59373</link>
      <description>Hi,
&lt;BR /&gt;I am attempting to execute a stored procedure on my SQL Server database.
&lt;BR /&gt;I get the following error:-
&lt;BR /&gt;The requested operation could not be performed because OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)" does not support the required transaction interface.
&lt;BR /&gt;I understand why this is happening - Inside my stored procedure, I am using an OPENROWSET write operation using a OLEDB provider, which does not support transactions.
&lt;BR /&gt;For this procedure I really don't care about the transactions. Is it possible to create a Talend MSSQL connection that does not wrap operations in transactions?
&lt;BR /&gt;I introduced a tJava component, before my call and used the following code:-
&lt;BR /&gt;java.sql.Connection conn = (java.sql.Connection)globalMap.get("conn_tMSSqlConnection_2");
&lt;BR /&gt;conn.setTransactionIsolation(0); 
&lt;BR /&gt;This results in the following error:-
&lt;BR /&gt;java.sql.SQLException: The TRANSACTION_NONE option is not currently supported by the setTransactionIsolation method.
&lt;BR /&gt;Help?</description>
      <pubDate>Sat, 16 Nov 2024 11:46:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285751#M59373</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Disable MSSQL transactions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285752#M59374</link>
      <description>I gave up on this.
&lt;BR /&gt;This scenario involved a datasource with an anonymous schema i.e. the input file can be different each time
&lt;BR /&gt;I used SQL -&amp;gt; OLEDB to import the data. this works fine.
&lt;BR /&gt;But, when I tried to write back to the source via Talend I got errors.
&lt;BR /&gt;I ended up concatenating the table into one long line and passing back to Talend to write to file.</description>
      <pubDate>Wed, 29 Jan 2014 11:23:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285752#M59374</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T11:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: Disable MSSQL transactions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285753#M59375</link>
      <description>Did you have tested using a separate tMSSQLConnection component and configure it to auto commit.&lt;BR /&gt;Normally this causes no transaction will opened.&lt;BR /&gt;Or in your own Java code try this:&lt;BR /&gt;conn.setAutoCommit(true);</description>
      <pubDate>Wed, 29 Jan 2014 22:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285753#M59375</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-01-29T22:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Disable MSSQL transactions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285754#M59376</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;I gave up on this.&lt;BR /&gt;This scenario involved a datasource with an anonymous schema i.e. the input file can be different each time&lt;BR /&gt;I used SQL -&amp;gt; OLEDB to import the data. &amp;nbsp;this works fine.&lt;BR /&gt;But, when I tried to write back to the source via Talend I got errors.&lt;BR /&gt;I ended up concatenating the table into one long line and passing back to Talend to write to file.&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;which component you used for oledb connection??</description>
      <pubDate>Wed, 29 Jul 2015 08:42:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285754#M59376</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-29T08:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Disable MSSQL transactions</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285755#M59377</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;I gave up on this.&lt;BR /&gt;This scenario involved a datasource with an anonymous schema i.e. the input file can be different each time&lt;BR /&gt;I used SQL -&amp;gt; OLEDB to import the data. &amp;nbsp;this works fine.&lt;BR /&gt;But, when I tried to write back to the source via Talend I got errors.&lt;BR /&gt;I ended up concatenating the table into one long line and passing back to Talend to write to file.&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;which oledb connection you used??</description>
      <pubDate>Wed, 29 Jul 2015 08:44:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Disable-MSSQL-transactions/m-p/2285755#M59377</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-07-29T08:44:02Z</dc:date>
    </item>
  </channel>
</rss>

