<?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 Reading a stored procedure from talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326749#M96205</link>
    <description>&lt;P&gt;Hi,&lt;BR /&gt;I need to read a stored procedure from my Talend data fabric 6.4.1 (DB is Mssql server ) and the result set data should load to data base only.&lt;BR /&gt;I tried to read SP from tmssqlsp component but there is no guess schema option where my so is having around 60 columns. How can I read SP and how can I guess schema.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;MS&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 05:46:07 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T05:46:07Z</dc:date>
    <item>
      <title>Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326749#M96205</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I need to read a stored procedure from my Talend data fabric 6.4.1 (DB is Mssql server ) and the result set data should load to data base only.&lt;BR /&gt;I tried to read SP from tmssqlsp component but there is no guess schema option where my so is having around 60 columns. How can I read SP and how can I guess schema.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;MS&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:46:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326749#M96205</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T05:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326750#M96206</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; If you have the list of columns available as part of a temp table in MSSQL, the best way is to use a tMSSQLInput to do the guess schema for this temp table (do a insert of data to a new table to create the temp table).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; Then use export as XML option to export the schema to an XML file. Then import the same schema using this XML file to MS Stored Procedure component of Talend.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; I agree it is bit circuitous route but there is no direct option available right now. If you are doing in this method, you can still save time compared to typing 60 columns manually.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 May 2019 19:59:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326750#M96206</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-22T19:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326751#M96207</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LMluAAG"&gt;@Mastan_123&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Were you able to resolve your issue with the help of above post? If yes, could you please mark the topic as resolved?&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 18:42:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326751#M96207</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-23T18:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326752#M96208</link>
      <description>Thanks for your reply,&lt;BR /&gt;&lt;BR /&gt;I created a view to insert data into temp table by using Msinput component I am able to guess the schema into component, but my prob is I try to run the procedure in mssqlrow component it is running fine with EXEC.Procedure Name. But no data is getting into output, I am getting only null value. I even tried by using Mssqlsp component, but same null value I am getting.&lt;BR /&gt;Please help me how to resolve this...&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;MS</description>
      <pubDate>Fri, 24 May 2019 03:14:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326752#M96208</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-24T03:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326753#M96209</link>
      <description>Hi Nikhil,&lt;BR /&gt;&lt;BR /&gt;If you are following the same method could you please share any sample job for better understanding if possible.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;</description>
      <pubDate>Fri, 24 May 2019 03:16:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326753#M96209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-24T03:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading a stored procedure from talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326754#M96210</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LMluAAG"&gt;@Mastan_123&lt;/A&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Please refer the below link for the sample job where personal information from Talend stored procedure is being fetched using Talend through RECORD SET. I would recommedn to try the same example so that you will be getting more clarity on the flow and then try to implement the same in your use case.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://help.talend.com/reader/iYcvdknuprDzYycT3WRU8w/AdupF~qe4XHm_K9YH3NoMA" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/reader/iYcvdknuprDzYycT3WRU8w/AdupF~qe4XHm_K9YH3NoMA&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I hope this will resolve your issue. Please spare a second to mark the post as resolved once you complete the flow. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2019 03:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reading-a-stored-procedure-from-talend/m-p/2326754#M96210</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-24T03:40:34Z</dc:date>
    </item>
  </channel>
</rss>

