Search found 53125 matches

by ray.wurlod
Tue Jul 08, 2008 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchoracle error message
Replies: 11
Views: 4951

As a general rule anything with "lib" in its name or with a suffix of ".so" needs to have itself (lib) or its parent directory (".so") in the shared library search path (LD_LIBRARY_PATH, SHLIB_PATH or LIBPATH environment variable, depending on your flavour of UNIX). The order of directories in this ...
by ray.wurlod
Mon Jul 07, 2008 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Conversion warning
Replies: 3
Views: 1803

If the input column is a string, then there is no implicit conversion to decimal. You need decimal_from_string() function.
by ray.wurlod
Mon Jul 07, 2008 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

I can not see a UniVerse stage in the job design you documented, am I missing something?

The usual, and officially documented, approach to get link names is to invoke the DSGetStageInfo() function in a routine.
by ray.wurlod
Mon Jul 07, 2008 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: e-Mail to Users if the records are not loaded in table
Replies: 3
Views: 1026

To quote a certain advertisement, "just do it". Determine that no rows were loaded (how you do that depends on several factors, but do not believe that it's the same thing as the number of rows DataStage sent to the table). To send email either call DSSendMail() in an after-job subroutine or use a N...
by ray.wurlod
Mon Jul 07, 2008 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Director error with a particular folder only
Replies: 8
Views: 2069

Sounds like the project may need re-indexing (using DS.REINDEX ALL next time you can get exclusive access to the project).
by ray.wurlod
Mon Jul 07, 2008 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing() function usage in Transformer
Replies: 8
Views: 6039

There shouldn't be. Why might you believe that there is?
by ray.wurlod
Mon Jul 07, 2008 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: get user defined environment variable in job sequence
Replies: 11
Views: 3406

You don't. You make $DBPWD itself the job parameter.
by ray.wurlod
Mon Jul 07, 2008 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject file
Replies: 17
Views: 3277

A Sequential File stage always allows Null Field Value to be edited provided, of course, that the field is marked as Nullable.
by ray.wurlod
Mon Jul 07, 2008 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle hints issue?
Replies: 9
Views: 2843

Try putting the name of the table you are querying into the Partition Table field as well, to see whether parallel execution becomes available.
by ray.wurlod
Mon Jul 07, 2008 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation UNIX
Replies: 1
Views: 834

DataStage Installation and Upgrade Guide page 3-2 has the "official" story.
by ray.wurlod
Mon Jul 07, 2008 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Repository
Replies: 4
Views: 4342

The repository database has not been UniVerse since DataStage version 5.2, it is now (in version 7) a derivative thereof called DataStage Engine.

Things change again in version 8.
by ray.wurlod
Mon Jul 07, 2008 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using an Aggregator stage to calculate Year to date values
Replies: 3
Views: 2427

Don't believe there is. Happy to learn of course.
by ray.wurlod
Mon Jul 07, 2008 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Datastage Basic Routine in UNIX script
Replies: 8
Views: 2361

chulett wrote:We can usually get you on the right / much more better road to take you to your goal once we know what that is.

This may involve the MMB stage (an invention of Craig's). :wink:
by ray.wurlod
Mon Jul 07, 2008 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using system Date variables making JOB slow
Replies: 3
Views: 1824

DSJobStartTimestamp is NOT a variable - it's a macro that invokes DSGetJobInfo(DSJ.ME, DSJ.JOBSTARTTIMESTAMP)

Evaluating this for every row could certainly be expected to increase overall execution time.
by ray.wurlod
Mon Jul 07, 2008 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compare of 2 values
Replies: 5
Views: 1475

If you want to search for "valid date" it's a slightly different approach. Use something like

Code: Select all

Oconv(Iconv(InLink.TheDate,"DYMD"),"DYMD[4,2,2]":@VM:"MCN") <> InLink.TheDate