Search found 53125 matches

by ray.wurlod
Wed Aug 18, 2010 12:04 am
Forum: General
Topic: IOD EMEA Day Two
Replies: 11
Views: 6814

It's an "open beta" - that means available for all IBM Information Server customers. But you've missed much of it.
by ray.wurlod
Tue Aug 17, 2010 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field from a word
Replies: 12
Views: 4069

You don't need Ereplace() to split. Field() function alone will suffice.
by ray.wurlod
Tue Aug 17, 2010 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage Integer Value
Replies: 8
Views: 2836

Learn patience. I typically don't respond to posts at 4am my time. DSXchange is an all-volunteer site whose members post as and when they can. If you need one hour response, sign up with your official support provider for priority service (and good luck finding one who'll agree to a one hour SLA!) ...
by ray.wurlod
Tue Aug 17, 2010 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate key stage
Replies: 2
Views: 1087

This stage has a block property. It can deliver a block of N keys from the state file at a time. These are held in memory by the process and consumed as needed. The next time the list gets exhausted the SKGen stage goes back to the state file and retrieves another block.
by ray.wurlod
Tue Aug 17, 2010 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC SQL Server Driver]Communication link failure
Replies: 1
Views: 2539

The problem occurred in your network ("communication link"), not in DataStage. Have your network administrator investigate.
by ray.wurlod
Tue Aug 17, 2010 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to find mqread and unitofwork stages.
Replies: 2
Views: 1019

In Version 8.1 in the Real Time folder you get the MQ Connector. The MQ Series stage is still present. The MQ Read stage is in the Transactional folder. There is no Unit of Work stage.
by ray.wurlod
Tue Aug 17, 2010 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help
Replies: 5
Views: 1620

There's no legal way to do this. If you export the job you will be able to find the encrypted password, then you can search DSXchange for a naughty algorithm that would allow you to decrypt it. By the time you've done that "they" may have changed the password. Change the job design to use ...
by ray.wurlod
Tue Aug 17, 2010 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Related Information
Replies: 13
Views: 6562

EOTCOUNT is not the same as rowcount.
by ray.wurlod
Tue Aug 17, 2010 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Combine Multiple Files
Replies: 4
Views: 1659

This is a great opportunity to use some of the server engine (formerly UniVerse) capability to treat a directory as a table. You can build a query that returns the file names in your range. Begin by calculating the end dates of the range. A Routine activity is probably the easiest way to do this. Yo...
by ray.wurlod
Tue Aug 17, 2010 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete data from an Oracle table Error
Replies: 4
Views: 2302

This is a server job. Don't know why this behaviour would have changed between version 7 and 8. I think you need to involve your official support provider - there may be a patch to address this issue.
by ray.wurlod
Tue Aug 17, 2010 4:21 pm
Forum: General
Topic: Converting Stored Procedure to DataStage Jobs
Replies: 9
Views: 4029

kumar_s wrote:The trick is, you ll have to find the list of statements that has to be executed in ETL box and the ones that has be executed in DB box for better performance.
Ah, that sounds like the "balanced optimization" feature coming in the next version!
by ray.wurlod
Tue Aug 17, 2010 4:19 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: What does IA store during Column Analysis?
Replies: 1
Views: 1527

Welcome aboard. The rule of thumb is that the IADB needs to be three to four times the size of the volume of data being profiled. While this is all "permanently" stored you can clean it out once no longer required. Analysis results are stored in the common metadata repository (XMETA). In c...
by ray.wurlod
Tue Aug 17, 2010 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need info for the DS v.8.1.0 and DSv.8.1.1
Replies: 3
Views: 1184

No-one has all that in their head. Luckily it's all documented on the IBM web site "Fix Central".
by ray.wurlod
Tue Aug 17, 2010 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LookUp Stage Condition Specification Issue
Replies: 10
Views: 4254

... or even a Modify stage.
by ray.wurlod
Tue Aug 17, 2010 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to convert nullable to not null values
Replies: 5
Views: 2403

I guess it's because it didn't add anything new. NullToValue() was already mentioned in my answer.