Search found 57 matches

by bakul
Sun Oct 23, 2005 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file - Record delimiter
Replies: 2
Views: 1233

Thanks for your reply! But I am not sure I understand it completely. :?: Is it because the ascii 0 char is not present or is it because it is present? In either case, what is the workaround? How can I ensure that the complete record will be returned by the awk statement? Is there some specific setti...
by bakul
Fri Oct 21, 2005 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file - Record delimiter
Replies: 2
Views: 1233

Sequential file - Record delimiter

Hello, I am writing records to a sequential file and then using a shell script to split the file. The record delimiter is 'UNIX Newline' and the final delimiter is 'end'. There are 2 columns in the file and the second column is a VarChar(2000). The second column itself contains double quotes. When I...
by bakul
Tue Oct 18, 2005 4:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: runlocally()
Replies: 6
Views: 2292

Thanks for your inputs! :) I have posted the query on ADN.

Regards,
Bakul
by bakul
Sun Oct 16, 2005 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL Join Vs Join Stage
Replies: 7
Views: 2516

Thanks for all your inputs. :)
by bakul
Sun Oct 16, 2005 11:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: runlocally()
Replies: 6
Views: 2292

runlocally()

I am using the 2 XML Output stages, 1 Merge stage and a final XML Output stage to generate an XML. The input file is around 2GB. The job completes succesfully. However the entire XML is not generated. The job log shows the error, XML_Output_14,0: Caught unknown exception from runLocally() XML_Output...
by bakul
Thu Oct 13, 2005 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL Join Vs Join Stage
Replies: 7
Views: 2516

Thanks for the reply!
However my query is slightly different. I wish to know which option is better -
1) Joining in the SQL query
or
2) Joining using Join Stage

Regards,
Bakul
by bakul
Thu Oct 13, 2005 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL Join Vs Join Stage
Replies: 7
Views: 2516

DB2 SQL Join Vs Join Stage

I have 3 tables A, B and C. I need three kinds of information 1) Information from table A 2) Information from table B for all rows in A 3) Information from table C for all the rows in B. Which of the following approaches would be better performance-wise: 1) Use 3 DB2 stages each to extract the above...
by bakul
Mon Oct 10, 2005 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Output Stage
Replies: 1
Views: 1192

XML Output Stage

Hello, I need to read data from a database and create XML files in DS EE. To generate the XML, multiple XML Output stages have to be used. I have been able to generate the XML (by maintaining sequential flow). My only concern is about the performance. Many posts on this forum mention that the XML st...
by bakul
Fri Sep 23, 2005 2:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: More than one XML Repetition path
Replies: 3
Views: 1469

Could you please give me an example of how to generate XML using sequential file?
by bakul
Thu Sep 22, 2005 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: More than one XML Repetition path
Replies: 3
Views: 1469

More than one XML Repetition path

A similar message has been posted earlier on the RTI Forum. I am posting it here(with updations) hoping that I might get a response. :) I want to generate an XML document of the form <header> <city name='CIT'> <customer> <name></name> <account></account> </customer> <customer> <name></name> <account...
by bakul
Thu Dec 09, 2004 11:22 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Row merger stage
Replies: 0
Views: 2861

Row merger stage

I have used the row merger stage to combine multiple rows into one row. But with RTI jobs,since the instances are continously running, the row merger stage concatenates all the previous instance rows to the current instance rows. Is there any way to ensure that the row merger merges the rows belongi...
by bakul
Thu Dec 09, 2004 11:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Select & Update in same job
Replies: 3
Views: 1642

That would have been the perfect solution in ordinary circumstances. But the job is RTI enabled so I can't use any passive stage with both input and output links. Is there any other way to accomplish it ?
by bakul
Thu Dec 09, 2004 11:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting a TimeStamp Value into Oracle Database
Replies: 4
Views: 1545

Instead of using TO_DATE(?, 'MM-DD-YYYY HH24:MI:SS') in the user-defined query,you could generate the timestamp in the transformer using, OConv(@DATE,"D-YMD[4,2,2]"):'-':Oconv(@TIME,"MTS."):'.':'000000' Define the timestamp field as timestamp with length of 26 and scale 6 Now dir...
by bakul
Thu Dec 09, 2004 1:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Select & Update in same job
Replies: 3
Views: 1642

Select & Update in same job

I have a job in which I perform a lookup using some value and then update the looked up values in the next transformer. Now the problem is that if the key for lookup repeats then the values have already been updated so the lookup should return updated values. But the Lookup stage still returns the s...
by bakul
Wed Nov 24, 2004 10:30 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: More than one XML Repetition path
Replies: 1
Views: 3422

I'll try to provide some more information. I want to generate an XML document of the form <header> <city> <customer> <name></name> <account></account> <account></account> <account></account> </customer> <customer> <name></name> <account></account> <account></account> </customer> <branch> <name></nam...