<?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: Setting DataBase Properties in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312765#M83682</link>
    <description>Hi,
&lt;BR /&gt;This issue has been fixed and will be available in next release of TOS.</description>
    <pubDate>Mon, 14 May 2007 08:55:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-05-14T08:55:02Z</dc:date>
    <item>
      <title>Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312758#M83675</link>
      <description>Hi All,&lt;BR /&gt;While creating a new DB connection we will give the details like DB driver, Data source name login details etc,.&lt;BR /&gt;Is there any facility, that allows to read the above(database) details from a File? That is, I will give the same details in a file. Now my job needs to load the DB property details from that file.&lt;BR /&gt;Is that possible? If it is, plz tell me how to do that.&lt;BR /&gt;Regards,&lt;BR /&gt;Venky</description>
      <pubDate>Sat, 16 Nov 2024 14:36:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312758#M83675</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312759#M83676</link>
      <description>Hi venky,&lt;BR /&gt;A new component provides this facility : tContextLoad. It reads an input component with 2 columns ( name, value) and loads the current context with these values.&lt;BR /&gt;Best Regards</description>
      <pubDate>Fri, 20 Apr 2007 08:20:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312759#M83676</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-20T08:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312760#M83677</link>
      <description>Hi rbillerey,
&lt;BR /&gt;Can i find any documentation on this component.?
&lt;BR /&gt; The schema of this component contans only two fileds, Key and value and those are noneditable, but i need fields with details like DB driver name, DB name, login details.. etc. 
&lt;BR /&gt; I would like to read the DB properties details from this file instead of entering manually, which we do while creating a new DB connection. 
&lt;BR /&gt;plz tell me how to use this component for this purpose.
&lt;BR /&gt;Thanks in advance,
&lt;BR /&gt;Venky</description>
      <pubDate>Fri, 20 Apr 2007 10:14:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312760#M83677</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-20T10:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312761#M83678</link>
      <description>Here's the way to do it :&lt;BR /&gt;1/ Create the context variables you need : host, port, database, user, password ( in the Properties/Context panel ; to display this panel, click the background of the job design panel )&lt;BR /&gt;2/ Set the property fields of your tDBInput component with the context variables you've just created ( use CTRL - SPACE to display the variable list ).&lt;BR /&gt;3/ Create a csv file like this :&lt;BR /&gt;&lt;PRE&gt;host;your_host&lt;BR /&gt;port;your_port&lt;BR /&gt;database;your_db&lt;BR /&gt;user;your_user&lt;BR /&gt;password;your_password&lt;/PRE&gt;&lt;BR /&gt;4/ Use a tFileInputDelimted with a 2 column schema ( key, value ) and connect it to a tContextLoad&lt;BR /&gt;5/ Connect the tContextLoad component to your tDBInput with a trigger/Run if Ok&lt;BR /&gt;6/ Run your job ( F6 )&lt;BR /&gt;Hope it helps</description>
      <pubDate>Fri, 20 Apr 2007 13:45:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312761#M83678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-20T13:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312762#M83679</link>
      <description>Hi rbillerey,
&lt;BR /&gt;Thanks for your timely reply. But i couldn't make this. My job is unable to read the DBProperty details from context variables.
&lt;BR /&gt;I am using java version.
&lt;BR /&gt;i have followed the steps as you said,
&lt;BR /&gt;i have created context varibles and selected the context type from repository.
&lt;BR /&gt;I have connected tFileinputdelimited(CSV which u said to create), with schema(key,value), with tContextLoad component.
&lt;BR /&gt;And tContextLoad and tSybaseInput with 'run if ok' connection.
&lt;BR /&gt;Before connecting, the schema of the tContextLoad is, Key, value. But after connecting with the fileinput, the schema is changed to,
&lt;BR /&gt;Key,value,key,value.
&lt;BR /&gt;Fileinput schema: tContextLoad schema: (NON EDITABLE)
&lt;BR /&gt;key key
&lt;BR /&gt;value value
&lt;BR /&gt; key
&lt;BR /&gt; value
&lt;BR /&gt;I think, this non similarity in schema is giving me the error(unable to read the DBProperty details from context variables).
&lt;BR /&gt;plz correct if i did any mistake and tell me how to solve this.
&lt;BR /&gt;Thanks in advance,
&lt;BR /&gt;Venky</description>
      <pubDate>Fri, 20 Apr 2007 15:56:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312762#M83679</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-20T15:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312763#M83680</link>
      <description>You're right, it's a bug. Just delete the 2 additional columns that are not read-only and it should work.</description>
      <pubDate>Fri, 20 Apr 2007 16:03:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312763#M83680</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-20T16:03:06Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312764#M83681</link>
      <description>The schema of tLoadcontext is non editable. All the 4 columns(key,value,key,value) are read-only. There are no columns which are not read-only. And the right arrow(--&amp;gt;, for sync. the schema) is also not active.&lt;BR /&gt; So, how can i change this schema relevant to tFileinput.</description>
      <pubDate>Mon, 23 Apr 2007 06:02:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312764#M83681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-04-23T06:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312765#M83682</link>
      <description>Hi,
&lt;BR /&gt;This issue has been fixed and will be available in next release of TOS.</description>
      <pubDate>Mon, 14 May 2007 08:55:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312765#M83682</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-05-14T08:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312766#M83683</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Hi,&lt;BR /&gt;This issue has been fixed and will be available in next release of TOS.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;It still bugs in TOS 2.1.0 with Java !?! 
&lt;BR /&gt;There is way to skip it : delete the input rows in the tLoadContext then create them again in your tFileInput</description>
      <pubDate>Fri, 27 Jul 2007 15:01:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312766#M83683</guid>
      <dc:creator>bdurand</dc:creator>
      <dc:date>2007-07-27T15:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312767#M83684</link>
      <description>&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MA5A.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/143082iB236712184B767DA/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MA5A.png" alt="0683p000009MA5A.png" /&gt;&lt;/span&gt; !! 
&lt;BR /&gt;I correct the error using the method above, I run the job and it works. 
&lt;BR /&gt;I save the job, I close it, I open it again and the error is still here ! 
&lt;BR /&gt;What appends ? 
&lt;BR /&gt;Do you manage to use tContextLoad ? 
&lt;BR /&gt;TOS 2.1.0 r4515 
&lt;BR /&gt;regards, 
&lt;BR /&gt;have a good week end 
&lt;BR /&gt;Ben</description>
      <pubDate>Fri, 27 Jul 2007 16:13:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312767#M83684</guid>
      <dc:creator>bdurand</dc:creator>
      <dc:date>2007-07-27T16:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312768#M83685</link>
      <description>bedurand, I advise you to create a new issue in the bugtracker to have this bug fixed &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;</description>
      <pubDate>Fri, 27 Jul 2007 17:19:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312768#M83685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-07-27T17:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312769#M83686</link>
      <description>1689</description>
      <pubDate>Mon, 30 Jul 2007 08:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312769#M83686</guid>
      <dc:creator>bdurand</dc:creator>
      <dc:date>2007-07-30T08:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312770#M83687</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;(0003153)&lt;BR /&gt;mhirt&lt;BR /&gt;2007-07-31 00:14&lt;BR /&gt; Your column have to be named "key" and "value" in lowercase.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;Thank you mhirt ! 
&lt;BR /&gt;Nullable must be set at yes and length at 255. This must be exactly the same schema 
&lt;BR /&gt;(When issues are closed, can we add notes ?)</description>
      <pubDate>Tue, 31 Jul 2007 08:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312770#M83687</guid>
      <dc:creator>bdurand</dc:creator>
      <dc:date>2007-07-31T08:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: Setting DataBase Properties</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312771#M83688</link>
      <description>hi, 
&lt;BR /&gt;i tried to use this tContextLoad and i confirm... it works. 
&lt;BR /&gt;Thank you for this post, with this component it's quite easy to modify parameters</description>
      <pubDate>Tue, 31 Jul 2007 08:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Setting-DataBase-Properties/m-p/2312771#M83688</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-07-31T08:36:13Z</dc:date>
    </item>
  </channel>
</rss>

