Search found 15603 matches

by ArndW
Fri May 16, 2008 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating a table which has key column as timestamp (date)
Replies: 3
Views: 753

No, I've never encountered particular problems due the the column type - but timestamps & dates can be bothersome to work with.
by ArndW
Fri May 16, 2008 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer stage
Replies: 7
Views: 1916

In DataStage server jobs the transform stage additional can do lookups. In PX each stage performs a specific task and you end up using more stages, but each one is specialized and tuned to it's specific task. The Transform stage cannot be configured to do more (or less), that is just the way the app...
by ArndW
Fri May 16, 2008 8:22 am
Forum: General
Topic: Who sets $HOME
Replies: 6
Views: 2124

No, your explanation is spot on.
by ArndW
Fri May 16, 2008 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating a table which has key column as timestamp (date)
Replies: 3
Views: 753

The less conversions you perform, the more efficient your job will be. I wouldn't convert data types unless I had to.
by ArndW
Fri May 16, 2008 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer stage
Replies: 7
Views: 1916

It can have only 1 main input, and n-output links. If it had more than 1 main input, then it would have to be merge or join stage.
by ArndW
Fri May 16, 2008 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer stage
Replies: 7
Views: 1916

It can have only 1 main input, and n-output links. If it had more than 1 main input, then it would have to be merge or join stage.
by ArndW
Fri May 16, 2008 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File +Filler
Replies: 7
Views: 1620

Ray - I'll take that advice under advisement :D Now, you need to go back and tell Roopanwita what his delta blues column contains. Roopanwita - We might be joking around a bit here, but remember that we cannot know your data descriptions and the column is not a reserved word or name in any system we...
by ArndW
Fri May 16, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of join stage in a single job
Replies: 3
Views: 622

Why not try it in a test job and get a definitive answer?
by ArndW
Fri May 16, 2008 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of join stage in a single job
Replies: 3
Views: 622

You are nowhere near the design limit. If you set APT_DUMP_SCORE to true at runtime you can see how many actual processes you get at runtime - this may be less than you think if the join stages can be combined.
by ArndW
Fri May 16, 2008 6:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't log into uvsh/dssh from unix
Replies: 10
Views: 4491

There has never been a "ds" executable as a part of DataStage.
by ArndW
Fri May 16, 2008 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion problem
Replies: 10
Views: 2244

So one possible answer is

Code: Select all

ICONV('01':In.CobDateCol,'D2DMY[2,2,2]')
to get an internal date by adding day 1 of each month.
by ArndW
Fri May 16, 2008 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Conversion Utility - Need Clarification
Replies: 2
Views: 1107

ag_ram - you asked a question and Ray answered it. The rest of your mail regards your interpretation and amazement and is just a statement, not a question. If you don't agree with the answer or the contents of the documentation and wish to argue views or interpreteations, then perhaps you can contac...
by ArndW
Fri May 16, 2008 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion problem
Replies: 10
Views: 2244

Is "0823" supposed to be "August, 2023" or "August, 1923" or another date? In order to put this into an Oracle DATE you will need to add a day-of-month as well. What should that be, day 1?
by ArndW
Fri May 16, 2008 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File +Filler
Replies: 7
Views: 1620

I have no idea what that column could be used for. Does it always have "A" or does it contain other value? "A" could mean "Add", "D"elete, "C"hange or "M"odify.

I have a COBOL file at this site with a column called "ADDRKENN", can you tell me if I need it and what it is used for?
by ArndW
Fri May 16, 2008 4:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use of row merge stage
Replies: 2
Views: 1993

The Row Merger stage reads data one row at a time from an single string of a specified format. It then writes the string on stage can have a single input link and a single output link. CRC32 values are used to quickly and efficiently compare values. There are hundreds of pages in Google that descri...