Search found 6797 matches

by DSguru2B
Tue Feb 13, 2007 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenate all the output rows in a variable
Replies: 10
Views: 2189

If your table is empty then Yes, no records will pass through. You need to incorporate the IsNull() check within the database stage. And send a single row.
by DSguru2B
Tue Feb 13, 2007 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Status code 127 for the job
Replies: 4
Views: 1453

Ray might have nailed it, yet again. You need to tell us what command are you using to run your job and where are you seeing this status code?
by DSguru2B
Mon Feb 12, 2007 9:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get "Could not open table file" when create lookup
Replies: 2
Views: 1814

Welcome Aboard :)
Use the serch facility of this website. It is very powerful and will save you a lot of time. Do an exact search on "Error finalizing". You will see that such an issue has been covered before.
by DSguru2B
Mon Feb 12, 2007 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I use Change capture for this ?
Replies: 8
Views: 1879

Change Capture Stage will capture changes as codes in an additional column. This extra column will have codes. Read about it in DS help.
by DSguru2B
Mon Feb 12, 2007 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare stage, output columns
Replies: 16
Views: 16569

Read about the codes in Parallel Developer's Guide. Its all there in the Change Capture chapter.
by DSguru2B
Mon Feb 12, 2007 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert sybase timestamp to Oracl timestamp
Replies: 19
Views: 7735

Good to know. Make sure you add more comments to the routine if required. C is such a language that a few days down the road you wont know what the code is doing.
You can mark the post as Resolved now.
by DSguru2B
Mon Feb 12, 2007 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup On a Lookup
Replies: 4
Views: 921

I guess I take my statment back. Any Red color in the transformer would force me to go for alternatives and hence I never played with it and hence my ignorance.
by DSguru2B
Mon Feb 12, 2007 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal field with Trailing negative signs
Replies: 18
Views: 3915

Go for len(trim(in.Col)) - 1. But ArndW has a very valid point. No string manipulation is required.
by DSguru2B
Mon Feb 12, 2007 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Fact Table Process
Replies: 14
Views: 5261

Thats it. Is it that simple :? Well, this way, MERGE can also be used for Inserts right :?:
by DSguru2B
Mon Feb 12, 2007 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Fact Table Process
Replies: 14
Views: 5261

I know this is off topic but Ken, someday you have to tell us how to do the co-related updates aka bulk updates.
Thanks,
by DSguru2B
Mon Feb 12, 2007 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal field with Trailing negative signs
Replies: 18
Views: 3915

ArndW wrote:There is no need to do any string manipulation or conversion if the datatype is specified correctly in the first place.

Point duely noted :)
by DSguru2B
Mon Feb 12, 2007 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal field with Trailing negative signs
Replies: 18
Views: 3915

You can do something like

Code: Select all

If Right(in.Col, 1) = "-" then "-":left(in.Col, len(in.Col)-1) else in.Col
by DSguru2B
Mon Feb 12, 2007 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Fact Table Process
Replies: 14
Views: 5261

How are you loading your fact table now. Are you collecting all your data into a flat file in one job after all the lookups and transformations and then in a second job loading into your table or everything in one job without an intermediate sequential file stage?
by DSguru2B
Mon Feb 12, 2007 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal field with Trailing negative signs
Replies: 18
Views: 3915

Is (-) the only trailing character you are getting or there are others? Is this a packed field? What does the trailing (-) represent?
by DSguru2B
Mon Feb 12, 2007 1:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job End Time
Replies: 13
Views: 2552

dsjob -report will get you all that information along with the job status. You can parse it and bring it in a whatever format you like.