<?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: [resolved] tContextLoad - how to use in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302368#M74356</link>
    <description>Hello 
&lt;BR /&gt;Add a tMap between tOracleInput and tContextLoad to change the column name.
&lt;BR /&gt;See my screenshots.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
    <pubDate>Wed, 19 Aug 2009 04:07:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-08-19T04:07:55Z</dc:date>
    <item>
      <title>[resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302363#M74351</link>
      <description>I see how to  load context variables using tContextLoad from a text file that has a name-value pair of columns.&lt;BR /&gt;How can you use it in other scenarios?  Ex: Can you load from an upstream input compoment?  Is so, how - cannot get that to work.</description>
      <pubDate>Sat, 16 Nov 2024 13:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302363#M74351</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302364#M74352</link>
      <description>Hello 
&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Ex: Can you load from an upstream input compoment?&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Yes, you can load them from any input component, tMysqlInput etc...
&lt;BR /&gt;Note that you should define the corresponding context vars to mapping the key column, eg:
&lt;BR /&gt;You are quering the following rows from mysql
&lt;BR /&gt;host localhost
&lt;BR /&gt;database talend
&lt;BR /&gt;username root
&lt;BR /&gt;password shong
&lt;BR /&gt;port 3306
&lt;BR /&gt;You need define the context vars: host,database,username,password,port.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Tue, 18 Aug 2009 03:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302364#M74352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T03:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302365#M74353</link>
      <description>David, 
&lt;BR /&gt;Did you have download the Talend documentation which you can find 
&lt;A href="http://www.talend.com/resources/documentation.php" target="_blank" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt; ? You'll find a description and a use case of "how use the tContextLoad component". 
&lt;BR /&gt;You can also in the LoginPage when you start the produt "Import Talend demo project"; into the project you have several use cases and components in action. We are trying to have a sample of "HOW TO USE" per components for our new users. 
&lt;BR /&gt;From a tMSSQLInput or tOracleInput (metadata schema : 2 columns= key | value) you can try with this following SQL query : "SELECT 'myContextVar', columnA FROM table where id ='3'" 
&lt;BR /&gt;In this example you have a contextVariable named myContextVar and you push the ROW from tOracleInput to the tContextLoad. 
&lt;BR /&gt;The mechanism is pretty much the same if you're working on a dataflow itself. You have to operate with an association KEY/VALUE in all cases. 
&lt;BR /&gt;Best regards</description>
      <pubDate>Tue, 18 Aug 2009 04:00:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302365#M74353</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T04:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302366#M74354</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;David,&lt;BR /&gt;Did you have download the Talend documentation which you can find &lt;A href="http://www.talend.com/resources/documentation.php" target="_blank" rel="nofollow noopener noreferrer"&gt;here&lt;/A&gt; ? You'll find a description and a use case of "how use the tContextLoad component".&lt;BR /&gt;You can also in the LoginPage when you start the produt "Import Talend demo project"; into the project you have several use cases and components in action. We are trying to have a sample of "HOW TO USE" per components for our new users.&lt;BR /&gt;From a tMSSQLInput or tOracleInput (metadata schema : 2 columns= key | value) you can try with this following SQL query : "SELECT 'myContextVar', columnA FROM table where id ='3'"&lt;BR /&gt;In this example you have a contextVariable named myContextVar and you push the ROW from tOracleInput to the tContextLoad.&lt;BR /&gt;The mechanism is pretty much the same if you're working on a dataflow itself. You have to operate with an association KEY/VALUE in all cases.&lt;BR /&gt;Best regards&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Cannot get this to work. Do not know how to use. 
&lt;BR /&gt;attached image</description>
      <pubDate>Tue, 18 Aug 2009 15:57:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302366#M74354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T15:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302367#M74355</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;David,&lt;BR /&gt;Did you have download the Talend documentation which you can find &lt;A title="https://help.talend.com/reader/mR78oQ5jbb4NkZ64nbjqwQ/UmhtDz3tAS9uhaDsYRY7aA" href="https://help.talend.com/reader/mR78oQ5jbb4NkZ64nbjqwQ/UmhtDz3tAS9uhaDsYRY7aA" target="_self" rel="nofollow noopener noreferrer"&gt;here &lt;/A&gt;? You'll find a description and a use case of "how use the tContextLoad component".&lt;BR /&gt;You can also in the LoginPage when you start the produt "Import Talend demo project"; into the project you have several use cases and components in action. We are trying to have a sample of "HOW TO USE" per components for our new users.&lt;BR /&gt;From a tMSSQLInput or tOracleInput (metadata schema : 2 columns= key | value) you can try with this following SQL query : "SELECT 'myContextVar', columnA FROM table where id ='3'"&lt;BR /&gt;In this example you have a contextVariable named myContextVar and you push the ROW from tOracleInput to the tContextLoad.&lt;BR /&gt;The mechanism is pretty much the same if you're working on a dataflow itself. You have to operate with an association KEY/VALUE in all cases.&lt;BR /&gt;Best regards&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;&lt;BR /&gt;Cannot get this to work. Do not know how to use.&lt;BR /&gt;attached image&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2009 16:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302367#M74355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-18T16:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302368#M74356</link>
      <description>Hello 
&lt;BR /&gt;Add a tMap between tOracleInput and tContextLoad to change the column name.
&lt;BR /&gt;See my screenshots.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 19 Aug 2009 04:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302368#M74356</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-19T04:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302369#M74357</link>
      <description>For your example, do I have to first have to define context variables?  Or, does the context variable get created automaticallym named as name of the value in the key ?&lt;BR /&gt;Dave</description>
      <pubDate>Wed, 19 Aug 2009 17:51:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302369#M74357</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-19T17:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302370#M74358</link>
      <description>Hello Dave
&lt;BR /&gt;Yes, you must define the context vars mapping the key column first.
&lt;BR /&gt;Best regards
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Thu, 20 Aug 2009 07:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302370#M74358</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-20T07:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] tContextLoad - how to use</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302371#M74359</link>
      <description>thanks - I will try that.&lt;BR /&gt;Dave</description>
      <pubDate>Thu, 20 Aug 2009 16:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-tContextLoad-how-to-use/m-p/2302371#M74359</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-08-20T16:34:56Z</dc:date>
    </item>
  </channel>
</rss>

