<?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: Using results from a Database select statement in multiple Jobs in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216700#M12599</link>
    <description>Hi
&lt;BR /&gt;Please do sync columns and press Generate code. For your use where the u can 
&lt;BR /&gt;add extra line context.global_tran_id = input_row.global_tran_id (this case will work only when u have only one row as output)
&lt;BR /&gt;later u can pass the context variable another job for your process.
&lt;BR /&gt;Hope this one helps</description>
    <pubDate>Fri, 13 Aug 2010 06:14:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2010-08-13T06:14:08Z</dc:date>
    <item>
      <title>Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216695#M12594</link>
      <description>I have set up Talend with an Oracle database. 
&lt;BR /&gt;I will then run a select against a table it comes back with the key "transaction_ID" and then value "global_tran_id" 
&lt;BR /&gt;I want to take what is inside the value key number and place it into a variable so that I can use it in another job. 
&lt;BR /&gt;However, it doesn't seem to want to do this. 
&lt;BR /&gt;How can create this so that I can use it in multiple select statements. 
&lt;BR /&gt;What I am referring to is that once I have the global tran number I want to use that number in several selects which are in 
&lt;BR /&gt;different jobs. How can I do that? 
&lt;BR /&gt;Thanks 
&lt;BR /&gt;Killoran</description>
      <pubDate>Sat, 16 Nov 2024 13:19:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216695#M12594</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216696#M12595</link>
      <description>hi 
&lt;BR /&gt;i assume 
&lt;BR /&gt;"transaction_ID" =&amp;gt; is the value returned by the DB 
&lt;BR /&gt;"global_tran_id" =&amp;gt; name of your talend variable 
&lt;BR /&gt;you call your jobs from the main/parent job using tRunJob and click the tick-box 'transmit whole context' (do not double click on tRunJob - click once and then click on TAB component) 
&lt;BR /&gt;in this way *ALL* variable from your parent job will be sent to your child jobs. 
&lt;BR /&gt;is this what your are asking?</description>
      <pubDate>Wed, 11 Aug 2010 22:06:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216696#M12595</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-11T22:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216697#M12596</link>
      <description>Actually the transaction_id is what I use to find the global_tran_id.
&lt;BR /&gt;Basically I write a select statement the following way.
&lt;BR /&gt;select * from (table1) where transaction_id = '12345'
&lt;BR /&gt;From here I get the results which include a global_tran_id this number which is associated with 
&lt;BR /&gt;the transaction_id has multiple records inside multiple tables. I want to be able to use
&lt;BR /&gt;the global number to find all the records inside all of the different tables.
&lt;BR /&gt;I want to then use the global_tran_id to find all of the other records in different tables.
&lt;BR /&gt;So what I want to do is place the global_tran_id inside a variable and use that number inside another
&lt;BR /&gt;select statement. In a different job.
&lt;BR /&gt;Example: select* from (table2) where global_tran_id = (global_tran_id result from first select statement).
&lt;BR /&gt;Please keep in mind. I will have another job with the second select statement. I need to be able to have multiple jobs
&lt;BR /&gt;so that I could have up to twenty different jobs with twenty different select statements all based off that global_tran_id.
&lt;BR /&gt;I want to be able to populate all the jobs with the same global_tran_id and run the select statements. I understand that I can run multiple jobs. It is totally a matter of learning how to pull that global_tran_id into all the different jobs and place them inside a new select statements.</description>
      <pubDate>Thu, 12 Aug 2010 01:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216697#M12596</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-12T01:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216698#M12597</link>
      <description>Hi&lt;BR /&gt;put our output from select to TjavaRow. Pass the global_tran_id in the output to a context variable. Later you can use this context variable for other queries.</description>
      <pubDate>Thu, 12 Aug 2010 08:49:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216698#M12597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-12T08:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216699#M12598</link>
      <description>I keep getting the following error output row cannot be resolved. &lt;BR /&gt;The way I have it set up is by running the select inside an oracle connection.&lt;BR /&gt;From there I do a main connection to the TJavaRow.&lt;BR /&gt;I have set up in the context variable option the key and value.&lt;BR /&gt;Using the TJavaRow I have selected generate code however, it comes up with the following&lt;BR /&gt;//Code generated according to input schema and output schema&lt;BR /&gt;output_row.key = input_row.key;&lt;BR /&gt;output_row.value = input_row.value;&lt;BR /&gt;Any ideas?</description>
      <pubDate>Thu, 12 Aug 2010 20:22:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216699#M12598</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-12T20:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216700#M12599</link>
      <description>Hi
&lt;BR /&gt;Please do sync columns and press Generate code. For your use where the u can 
&lt;BR /&gt;add extra line context.global_tran_id = input_row.global_tran_id (this case will work only when u have only one row as output)
&lt;BR /&gt;later u can pass the context variable another job for your process.
&lt;BR /&gt;Hope this one helps</description>
      <pubDate>Fri, 13 Aug 2010 06:14:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216700#M12599</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-13T06:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216701#M12600</link>
      <description>Still getting the error.&lt;BR /&gt;Here is the exact message.&lt;BR /&gt;Exception in thread "main" java.lang.Error: Unresolved compilation problems: &lt;BR /&gt;	output_row cannot be resolved&lt;BR /&gt;	output_row cannot be resolved&lt;BR /&gt;	row1.global_tran_id cannot be resolved or is not a field</description>
      <pubDate>Fri, 13 Aug 2010 18:36:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216701#M12600</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-13T18:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216702#M12601</link>
      <description>Hi &lt;BR /&gt;   I have attached a screen shot for you help. there can only be input_row.(values) and output_row.(values) in tavaRow apart from routine and context values.&lt;BR /&gt;   If you click the code part of the screen then you can see the errors.&lt;BR /&gt;   Hope this one helps you</description>
      <pubDate>Mon, 16 Aug 2010 06:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216702#M12601</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-16T06:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216703#M12602</link>
      <description>This is still not placing the information into the variable. 
&lt;BR /&gt;Also since the data that comes originally from the table schema is in a column which is a bigDecimal the 
&lt;BR /&gt;context variable will not work with a big decimal variable. It keeps stating the following 
&lt;BR /&gt;Exception in thread "main" java.lang.NumberFormatException 
&lt;BR /&gt; at java.math.BigDecimal.&amp;lt;init&amp;gt;(Unknown Source) 
&lt;BR /&gt; at java.math.BigDecimal.&amp;lt;init&amp;gt;(Unknown Source) 
&lt;BR /&gt; at lsie_test_project.global_transaction_id_0_1.Global_Transaction_ID.runJobInTOS(Global_Transaction_ID.java:1204) 
&lt;BR /&gt; at lsie_test_project.global_transaction_id_0_1.Global_Transaction_ID.main(Global_Transaction_ID.java:1124) 
&lt;BR /&gt;The context variable that I set up on the screen is a context.value and the type is just like the schema a BigDecimal. Even if I have editted the schema so that it is there the only time I get any answer is when it is a string variable and it will not place the information into the variable. 
&lt;BR /&gt;Still would like to be able to place the BigDecimal result from a select statement. 
&lt;BR /&gt;The schema reads: Transaction_id which is a string 
&lt;BR /&gt; Global_tran_id which is a BigDecimal 
&lt;BR /&gt;In the context variable I set up the variable as a BigDecimal 
&lt;BR /&gt;The tjavarow information is setup the following way. 
&lt;BR /&gt;//Code generated according to input schema and output schema 
&lt;BR /&gt;output_row.TRANSACTION_ID = input_row.TRANSACTION_ID; 
&lt;BR /&gt;output_row.GLOBAL_TRAN_ID = input_row.GLOBAL_TRAN_ID; 
&lt;BR /&gt;context.global_tran_id = input_row.GLOBAL_TRAN_ID; 
&lt;BR /&gt;And above is my what I have done...I am still having problems getting the results from one select statement into the actual variable. 
&lt;BR /&gt;Once I have this then I will need to create a new select in a different job which I want to use this global value in other table schema's 
&lt;BR /&gt;Any help would be greatly appreciated.</description>
      <pubDate>Tue, 17 Aug 2010 19:26:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216703#M12602</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-17T19:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216704#M12603</link>
      <description>Hi&lt;BR /&gt;Kindly give default value as 0 for the context variable, then it will work properly</description>
      <pubDate>Wed, 18 Aug 2010 06:46:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216704#M12603</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-18T06:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216705#M12604</link>
      <description>Okay...I have done that and it does work. However, I am unable to use the context variable in the next job. This job uses the context variable in a different select statement.
&lt;BR /&gt;The statement I use is the following 
&lt;BR /&gt;"SELECT * FROM table1 where global_tran_id = 'context.GLOBAL_TRAN_ID'"
&lt;BR /&gt;Exception in component tOracleInput_1
&lt;BR /&gt;java.sql.SQLException: ORA-01722: invalid number
&lt;BR /&gt;To me this means that when I create the new statement the context variable is not being read from the Oracle table.</description>
      <pubDate>Wed, 18 Aug 2010 18:43:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216705#M12604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-18T18:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216706#M12605</link>
      <description>Hi&lt;BR /&gt;First of all the sql statement given by you is wrong it should be &lt;BR /&gt;"SELECT * FROM table1 where global_tran_id = '"+context.GLOBAL_TRAN_ID+"'"&lt;BR /&gt;Secondly&lt;BR /&gt;while call the tRunjob component , click the checkbox transit whole context&lt;BR /&gt;in the subjob there should be a context variable with same name i.e. context.GLOBAL_TRAN_ID&lt;BR /&gt;here also the default value should be set to 0</description>
      <pubDate>Thu, 19 Aug 2010 06:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216706#M12605</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-19T06:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216707#M12606</link>
      <description>I set it up the way you suggested however, it looks like the variable is not being set from first job.
&lt;BR /&gt;Here is the java code that I used.
&lt;BR /&gt;//Code generated according to input schema and output schema
&lt;BR /&gt;output_row.TRANSACTION_ID = input_row.TRANSACTION_ID;
&lt;BR /&gt;output_row.GLOBAL_TRAN_ID = input_row.GLOBAL_TRAN_ID;
&lt;BR /&gt;context.GLOBAL_TRAN_ID = input_row.GLOBAL_TRAN_ID;
&lt;BR /&gt;When I go to the second job and try it the system runs but since variable information is not set correctly I do not get any information on that global_tran_id.
&lt;BR /&gt;Any ideas?</description>
      <pubDate>Thu, 19 Aug 2010 18:21:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216707#M12606</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-19T18:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216708#M12607</link>
      <description>Hi 
&lt;BR /&gt;Try to put a System.out.println(context.GLOBAL_TRAN_ID); in tJavaRow and check weather the value is being printed correctly. 
&lt;BR /&gt;Please remove the statement System.out.println after the testing</description>
      <pubDate>Fri, 20 Aug 2010 09:15:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216708#M12607</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-20T09:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216709#M12608</link>
      <description>I tried it with your statement, the results were I still get the information in the log_row results. So the numeric value
&lt;BR /&gt;which I want is in the results screen however, the value is not be populated to the context variable.
&lt;BR /&gt;I really need to be able to move this value into other tables so that they can be used throughout.</description>
      <pubDate>Fri, 20 Aug 2010 18:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216709#M12608</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-20T18:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216710#M12609</link>
      <description>Hi&lt;BR /&gt;The statement i have given is to check your console with context variable.&lt;BR /&gt;have you checked transit all context in tRunjob</description>
      <pubDate>Sat, 21 Aug 2010 08:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216710#M12609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-21T08:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216711#M12610</link>
      <description>The best way to describe it is I used all of the code which you gave me.
&lt;BR /&gt;From there I ran the job. All of the transaction information is in the results area.
&lt;BR /&gt;However, the context variable remains 0 as a value.
&lt;BR /&gt;So while the information is present in the results area the variable isn't being updated.
&lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 21 Aug 2010 19:36:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216711#M12610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-21T19:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216712#M12611</link>
      <description>hi&lt;BR /&gt;can u upload the screen shot of your job&lt;BR /&gt;how many rows are the select statement in parent job returning. (I am expecting it to be one)</description>
      <pubDate>Sun, 22 Aug 2010 05:05:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216712#M12611</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-22T05:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216713#M12612</link>
      <description>I can't show everything on my screen due to corporate security.&lt;BR /&gt;However, this what I can show.&lt;BR /&gt;There is one row and two columns per transaction_ID&lt;BR /&gt;In the context variable screen area you see GLOBAL_TRAN_ID as the name and the value is 0&lt;BR /&gt;Below is the result&lt;BR /&gt;Starting job Global_Transaction_ID at 16:05 22/08/2010.&lt;BR /&gt; connecting to socket on port 3558&lt;BR /&gt; connected&lt;BR /&gt;52473&lt;BR /&gt;.--------------+--------------.&lt;BR /&gt;|          tLogRow_1          |&lt;BR /&gt;|=-------------+-------------=|&lt;BR /&gt;|TRANSACTION_ID|GLOBAL_TRAN_ID|&lt;BR /&gt;|=-------------+-------------=|&lt;BR /&gt;|192890        |52473         |&lt;BR /&gt;'--------------+--------------'&lt;BR /&gt; disconnected&lt;BR /&gt;Job Global_Transaction_ID ended at 16:05 22/08/2010.</description>
      <pubDate>Mon, 23 Aug 2010 00:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216713#M12612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-23T00:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using results from a Database select statement in multiple Jobs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216714#M12613</link>
      <description>hi&lt;BR /&gt;I have tried the same type of job in my system, its working properly&lt;BR /&gt;I used the components as below&lt;BR /&gt;tOracleoutput----------------&amp;gt;tJavaRow(in this i assigned my input_row variable to context variable i.e. global_id)---&amp;gt;tRunJob(transit whole context checked)&lt;BR /&gt;in the subjob i created a context variable same as the variable name in my parent job&lt;BR /&gt;SubJob&lt;BR /&gt;tJavaRow (println (context variable))&lt;BR /&gt;The below method is working properly, printing my context variable in parent job with values in subjob.</description>
      <pubDate>Mon, 23 Aug 2010 05:13:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Using-results-from-a-Database-select-statement-in-multiple-Jobs/m-p/2216714#M12613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-08-23T05:13:20Z</dc:date>
    </item>
  </channel>
</rss>

