Search found 42189 matches

by chulett
Sat May 24, 2008 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare data between 2 tables
Replies: 8
Views: 2533

No, because a Transformer supports only one stream input. You would need to use a lookup for the data from one of the tables.
by chulett
Sat May 24, 2008 6:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting first n bytes and last n bytes from a binary file
Replies: 2
Views: 885

You'd need to read the entire file and write it out to a new file, 'deleting' those n bytes at each end by not writing them to the output. Assuming your goal is to create a new version of the file without those bytes, that is.
by chulett
Fri May 23, 2008 8:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare data between 2 tables
Replies: 8
Views: 2533

Do you need to know which column changed or just the fact that at least one of the column values was different? The former is just a direct comparison of all fields individually while the latter could leverage CRC32 to do CDD across all columns at once.
by chulett
Fri May 23, 2008 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving Job name in error
Replies: 13
Views: 3358

Right... from the Designer's Guide: There are some exception handler variables that can be used in the sequence of activities that the Exception Activity stage initiates. These are: * stage_label.$ErrSource. This is the stage label of the activity stage that raised the exception (for example, the jo...
by chulett
Fri May 23, 2008 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion error
Replies: 3
Views: 1140

Search the forums for "Implicit conversion" and/or "Possible range limitation", you're not the first person to encounter this problem.
by chulett
Fri May 23, 2008 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamically Naming Sequential File
Replies: 7
Views: 4730

Screen output is captured in a dynamic array, not a string. The Field Mark delimiter needs to be removed so that you pass in a simple string to the parameter. That field mark is the 'not appropriate' part of the error message. The posts where you found this technique should also have explained this.
by chulett
Fri May 23, 2008 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Start loop and end loop
Replies: 2
Views: 1055

I would issue "cat <file> | ls -m" and capture the results.
by chulett
Fri May 23, 2008 12:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB API stage sends out strange warning messages
Replies: 4
Views: 3330

Sorry, don't have 8.x or DB2. If that's all it takes to generate those warnings, as you noted it would be best to take this up with IBM as it does smelly kinda... buggy.
by chulett
Fri May 23, 2008 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project creation
Replies: 3
Views: 1409

Perhaps in DS_AUDIT - a search for that name will turn up discussions on what it holds and how to query it.
by chulett
Fri May 23, 2008 12:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading XML from folder stage
Replies: 8
Views: 2380

Hmmm... never really thought of XMLInput as an active stage but if it is, you may be correct. Easy enough to check. Regardless, my main point was that adding one isn't any kind of a problem, we do that routinely here from Folder to XMLInput.
by chulett
Fri May 23, 2008 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Limit
Replies: 9
Views: 4125

If it's anything like the Server Aggregator stage, you can help it out tremendously by presorting your data in a manner than support the grouping being done. This should, in essence, remove any 'large volumes' issues.
by chulett
Fri May 23, 2008 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Server Upgrade
Replies: 2
Views: 1035

Read the 'multiserv.pdf' document in your Docs directory, it explains how to install multiple servers on the same host.

ps. You will need to install and use the MCM to access these two versions from a single client machine.
by chulett
Fri May 23, 2008 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborted due to Timeout Expired
Replies: 6
Views: 1485

Ask if your database has any kind of 'inactivity timeout' settings, which can be triggered if no rows flow down a link for a period of time.
by chulett
Fri May 23, 2008 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job never ends
Replies: 2
Views: 783

Or have the DBA kill the SID. That's usually the best way to clear any locks. :wink: