Search found 53125 matches

by ray.wurlod
Mon Aug 01, 2011 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join_Hash_Value,3: Write to dataset on [fd 13] failed????
Replies: 3
Views: 1326

What job type? You marked it "parallel" yet you are talking about a hashed file, which is not supported in parallel jobs.

Use Code tags to make your design clearer.
by ray.wurlod
Mon Aug 01, 2011 3:31 pm
Forum: General
Topic: User Id and PassWord showing up in Cleanup Resources
Replies: 1
Views: 769

If you're running the jobs from dsjob command, specify the NOLOG flag.
by ray.wurlod
Mon Aug 01, 2011 3:29 pm
Forum: General
Topic: Get last modification date (and other data) for any job
Replies: 4
Views: 2880

DS_AUDIT is probably the easiest. Imagine that it has a child table called UNNEST DS_AUDIT ON MODS containing DTM and MODIFIER columns. Then use regular SQL.
by ray.wurlod
Mon Aug 01, 2011 3:26 pm
Forum: IBM QualityStage
Topic: ERROR IN QUALITY STAGE -- STANDARDIZATION
Replies: 1
Views: 3484

Please describe all the stages in your job and how they are connected. What kind of standardization are you performing, and what (input) columns are being standardized?
by ray.wurlod
Mon Aug 01, 2011 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stages used for lookup and pass through args
Replies: 11
Views: 4263

The stages you're using are OK. What partitioning are you using, and what are the lookup keys?
by ray.wurlod
Mon Aug 01, 2011 4:03 am
Forum: General
Topic: DataStage Client 7.5.3 will support DataStage server 7.5.1
Replies: 2
Views: 1555

Check with your official support provider but I believe any 7.5.x can talk to any 7.5.x.
by ray.wurlod
Sun Jul 31, 2011 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stages used for lookup and pass through args
Replies: 11
Views: 4263

In a normal lookup you will never see SQL, because SQL is not used to perform the lookup. Instead, the entire reference data set (partitioned as specified) is loaded into memory and an in-memory index built "on the fly" on the designated key, whether one or more than one column. It is this...
by ray.wurlod
Sun Jul 31, 2011 10:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel execution of queries
Replies: 1
Views: 933

Multiple database stages. Funnel stage.
by ray.wurlod
Sun Jul 31, 2011 10:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database stages used for lookup and pass through args
Replies: 11
Views: 4263

Is this a normal Lookup or a sparse Lookup?

What stage type is feeding the reference link into the Lookup stage?
by ray.wurlod
Sun Jul 31, 2011 6:55 pm
Forum: General
Topic: cannot find entries in .odbc.ini file to acces oracle DB
Replies: 3
Views: 1752

Ordinarily prototypes for all databases are supplied in .odbc.ini. Find out who edited .odbc.ini at your site, and where they saved the original version (for example they may have called it .odbc.ini.orig).
by ray.wurlod
Sun Jul 31, 2011 6:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delimiter
Replies: 3
Views: 1554

No light to shed. The documentation is correct. It can not be done in a Sequential File stage, unless that stage has a filter command to convert the three different delimiter characters to a consistent one. Otherwise read each line from the file as a single string (for example if you need to preserv...
by ray.wurlod
Sat Jul 30, 2011 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage variables
Replies: 4
Views: 5717

In short, you are not correct. Scope of User Variables is limited to the sequence itself; indeed only to activities directly downstream of the User Variables activity.
by ray.wurlod
Sat Jul 30, 2011 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting date
Replies: 13
Views: 4848

Your dates are of data type Date or String? If they're of type Date (which I suspect they are), they are binary values within DataStage, only translated to your default date format where necessary for display (for example View Data) or when being converted to string (for example being exported to a ...
by ray.wurlod
Sat Jul 30, 2011 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No hit on lookup with Ignoring duplicate error
Replies: 3
Views: 1607

You can do it with one, but I believe your two-Lookup solutions is easier to understand and therefore to maintain.
by ray.wurlod
Sat Jul 30, 2011 5:12 pm
Forum: General
Topic: Need to pass a parameter across all jobs
Replies: 9
Views: 12116

I believe that the User Variable activity was introduced in version 8.x.

But a version 7.x solution would involve creating a parameter in the sequence itself, and passing that to the ten job activities.