Search found 42189 matches

by chulett
Tue May 22, 2007 12:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using lookups
Replies: 13
Views: 3163

Don't see how there could be a join issue unless it is one of your own making. Hashed reference lookups are inner by nature, either an exact match or there's no match at all. Provide a detailed description of your job design, please.
by chulett
Mon May 21, 2007 11:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using lookups
Replies: 13
Views: 3163

Use your first query to populate a hashed file keyed on pcode. Use your second to stream rows in and lookup the description from that same hashed file using pcode. Send the combination of the two out as the result.

Or simply join the two tables in your source query.
by chulett
Mon May 21, 2007 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance
Replies: 14
Views: 6593

What "settings"? You said earlier that the Sequence job was not multi-instance, has that assertion changed? You only use the "jobname dot invocation_id" form at the command line to run jobs that are actually multi-instance, not 'normal' jobs. And please tell me you are using something meaningful for...
by chulett
Mon May 21, 2007 11:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unlock Table
Replies: 3
Views: 1097

Enlist the help of your DBA. Have them verify if that is indeed the issue.
by chulett
Mon May 21, 2007 11:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert / Update Timestamp
Replies: 1
Views: 1137

Ugh... why insert all records and then update them afterwards to set the timestamp? Set the timestamp in the transformer and use it in your DML. Biggest question to me is should each record have a 'current' timestamp, as in one that changes over the course of the job run? Or should each record in th...
by chulett
Mon May 21, 2007 11:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance
Replies: 14
Views: 6593

There's only one job, even if it is 'multi-instance'. However, you can run multiple copies of it at the same time, as long as the Invocation Ids in use at any given time are unique. The 'main' job will always show as 'Compiled' in the Director while any invoked instance will be where it shows 'Runni...
by chulett
Mon May 21, 2007 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to read the multibyte character as byte by byte
Replies: 6
Views: 1331

Never had to do it, but if I had to I would go to the online help Index and type byte to see what turned up.
by chulett
Mon May 21, 2007 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time and TimeStamp with microseconds
Replies: 20
Views: 10190

Doesn't really get any simpler. Don't you have the Convert function in PX? Or EReplace? While I agree it would be best to generate it the way you want it, but failing that it is easy enough to swap the delimiters: Convert(":",".",YourTimestamp) Perhaps another function wo...
by chulett
Mon May 21, 2007 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time and TimeStamp with microseconds
Replies: 20
Views: 10190

I doubt you're "going wrong" anywhere. Just seems like you need to translate the colons into periods after you've gotten the timestamp, if you really need it in that format.
by chulett
Mon May 21, 2007 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Or Parallel Job for XML tasks...?
Replies: 6
Views: 1707

VCInDSX wrote:Is XML Reader/Writer a deprecated pair?

Yes.
by chulett
Mon May 21, 2007 11:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error
Replies: 9
Views: 4665

Is that a supported compiler for PX on AIX?
by chulett
Mon May 21, 2007 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ConnectToDB2 routine
Replies: 9
Views: 2540

I'm sure it would. However, I don't know DB2 and don't have access to it in my environment. What did your DSLogInfo message show?
by chulett
Mon May 21, 2007 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what are the advantages of using sync sort
Replies: 2
Views: 908

In a nutshell - speed.
by chulett
Mon May 21, 2007 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage API -c program.
Replies: 16
Views: 8233

Look closer. Don't assume the exact name of the section, you're in the right place. I can't check right now, but it's not that hard to find.
by chulett
Mon May 21, 2007 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix- Dos Style Issue
Replies: 8
Views: 2356

Just use the type that is appropriate for the file. I don't seen the need to convert everything one way or the other, per se. And it's easy to check.

Open the file in vi. Look at the end of each record. Does it have a "^M" at the end? Yes = DOS file, no = UNIX file. Easy Peasy. :wink: