Search found 6797 matches

by DSguru2B
Wed Jan 31, 2007 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading file with variable record length
Replies: 13
Views: 4561

In the mean time the OP has an alternate solution. :wink:
derekchu, i forgot to mention that in your sequential file, delimiter should be set to comma (,).
by DSguru2B
Wed Jan 31, 2007 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATE Conversion to internal format
Replies: 8
Views: 1856

First you need to change your date in char(10) format to Date using StringToDate() and then use JulianDayFromDate() function to convert it to JulianDay.
by DSguru2B
Wed Jan 31, 2007 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is unshared dataset
Replies: 4
Views: 776

Ok. It can work in both sequential and parallel operation.
by DSguru2B
Wed Jan 31, 2007 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading file with variable record length
Replies: 13
Views: 4561

Specify two columns in Sequential file stage. Place the following code, as it is, in the Filter options. File name should be your source file. sed -e 's/[0-9][0-9]/,&,/g' -e 's/^,//' | awk 'BEGIN{FS=",";OFS=","}{for(i=0;i<=(NF/2)-1;i++) print $&...
by DSguru2B
Wed Jan 31, 2007 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading file with variable record length
Replies: 13
Views: 4561

Can you also have variable length integer that is 1 digit? Like

Code: Select all

3ABC5HIJKL
by DSguru2B
Wed Jan 31, 2007 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Stored procedure DRS Stage SQL Before tab
Replies: 9
Views: 3192

I highly doubt you can get a OUT parameter from the before/after sql tab. For that you need to run it via STP stage.
by DSguru2B
Wed Jan 31, 2007 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are missing in DB2 table
Replies: 17
Views: 3146

All rows get committed when your job finishes. But just for fun sake, specify Array size to 500 and Transaction size to 0. Post your finds.
by DSguru2B
Wed Jan 31, 2007 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are missing in DB2 table
Replies: 17
Views: 3146

He is not getting any warnings as per his very first post. Thats what makes it even harder to tackle.
Load your data to a flat file and do wc -l and post the outcome here.
by DSguru2B
Wed Jan 31, 2007 9:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are missing in DB2 table
Replies: 17
Views: 3146

What about the other set of questions I , ArndW and Craig asked? Help us in helping you.
by DSguru2B
Wed Jan 31, 2007 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are missing in DB2 table
Replies: 17
Views: 3146

Are you using Insert rows without clearing? Can you confirm that you are not using Insert and then update or the its twin.
by DSguru2B
Wed Jan 31, 2007 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is unshared dataset
Replies: 4
Views: 776

Never heard of that term. Do you mean a lookup file set?
by DSguru2B
Wed Jan 31, 2007 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records are missing in DB2 table
Replies: 17
Views: 3146

You sure you are quering the same table in the same schema on the same server that was loaded with your job? If yes and no warning messages then this might be strange. Clear the status file via director, try running again. If you still get the same results, load your data to a text file and at the u...
by DSguru2B
Wed Jan 31, 2007 8:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP connectivity in Datastage EE
Replies: 3
Views: 1743

Search on keywords "IDOC extract stage". You will get reading material with the plugins which will give you full description of its functionality and on the "how to's" with respect to usage. If you are interested to get trained specific to SAP R/3 PACK, then click here.
by DSguru2B
Wed Jan 31, 2007 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create parallel routine?
Replies: 10
Views: 5699

xjonny wrote:"If we knew what it was we were doing, it would not be called research, would it?"
- Albert Einstein

I like this guy, he quotes Albert Einstein. :lol:
by DSguru2B
Wed Jan 31, 2007 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UDB Enterprise Stage
Replies: 4
Views: 981

You have to understand that the two animals (server and px) work in a different way, that includes the database stages as well. Rejects are handled via transformer in server. But with enterprise stages, it is possible handle rejects like Ray advised.