Search found 53125 matches

by ray.wurlod
Wed Nov 19, 2008 1:08 pm
Forum: General
Topic: Documentation Information Needed about Sequencers
Replies: 2
Views: 722

A sequencer (something you can include in a job sequence) simply applies an "any" or "all" test to its inputs to trigger its output.

Documentation about job sequences is to be found in the DataStage manuals, rather than in the QualityStage manuals.
by ray.wurlod
Wed Nov 19, 2008 1:06 pm
Forum: General
Topic: calling routine/job across proejcts
Replies: 10
Views: 2803

Can't see why not. A parallel routine definition (a pointer to the actual routine) would have to be set up in each project that needs to use it, but there need only be one actual routine. Be very, very careful to undertake regression testing if you ever plan to change this routine, and add emphatic ...
by ray.wurlod
Wed Nov 19, 2008 1:04 pm
Forum: General
Topic: error calling sybase stored proc from stored procedure stage
Replies: 3
Views: 1127

Any time you have problems with a *.so file suspect your shared library search list (the LD_LIBRARY_PATH, LIBPATH or SHLIB_PATH environment variable).
by ray.wurlod
Wed Nov 19, 2008 1:03 pm
Forum: General
Topic: Perl Script Not Running
Replies: 7
Views: 2029

Please use a professional standard of written English at DSXchange. "U" is the name of one of our posters, while "wat" is a Buddhist shrine.
by ray.wurlod
Wed Nov 19, 2008 1:01 pm
Forum: General
Topic: load DB2 database table with data from a sequentiel File
Replies: 4
Views: 1027

Use a Transformer stage. On its input link use column names A, B, C that correspond with those you have defined for the sequential file (though, to be honest, the Sequential File stage does not care about field names - you could as easily use H, P, Q). On the output link of the Transformer stage, wh...
by ray.wurlod
Wed Nov 19, 2008 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does a user-defined query works?
Replies: 4
Views: 1727

Each ? is what is called a "parameter" marker and corresponds to a column in your job design on the link to which the SQL applies. If the column is marked as Key the parameter marker corresponding to it goes into the WHERE clause. Non-key columns match match in data type and number with the columns ...
by ray.wurlod
Wed Nov 19, 2008 3:32 am
Forum: General
Topic: Perl Script Not Running
Replies: 7
Views: 2029

In a Batch job you use a call to DSExecute with "UNIX" as the first (shell) argument.
by ray.wurlod
Wed Nov 19, 2008 3:31 am
Forum: General
Topic: capture duplicate data
Replies: 8
Views: 2270

Search - this question has been answered at least twice in the past.
by ray.wurlod
Wed Nov 19, 2008 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating Routine in IIS 8.0.1
Replies: 9
Views: 5194

Please advise how this issue was Resolved
by ray.wurlod
Wed Nov 19, 2008 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file path change.
Replies: 2
Views: 1310

APT_CONFIG_FILE environment variable (which might be a job parameter).
by ray.wurlod
Wed Nov 19, 2008 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting the source data into timestamp
Replies: 2
Views: 771

Do tell. Iconv() and Oconv() are not available in parallel jobs. You will need to convert the date portion into a date and then back again to a string with a different format (StringToDate() and DateToString() functions) then concatenate the time portion and the seconds (":00").
by ray.wurlod
Wed Nov 19, 2008 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partioning to be used in transformer stage
Replies: 8
Views: 1752

With one reader per node, the Sequential File stage will execute sequentially. But you will note that there is a "fan out" icon on the link between this and the next stage, indicating that the next stage will execute in parallel (which you can verify by inspecting its Advanced tab).
by ray.wurlod
Wed Nov 19, 2008 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size limit in DataStage?
Replies: 3
Views: 1280

There are no limits in DataStage - never have been. The only limits are those in the operating system. The only exception is hashed files, which do have a limit: 2GB unless created/resized to use 64-bit addressing, in which case the limit is theoretically approximately 19 million TB (assuming you ha...
by ray.wurlod
Tue Nov 18, 2008 8:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with Script
Replies: 11
Views: 1783

Why are you trying to run a Korn shell script in a Bourne shell?
by ray.wurlod
Tue Nov 18, 2008 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partioning to be used in transformer stage
Replies: 8
Views: 1752

False.

There will be a partitioner between the Sequential File stage and any downstream stage that executes in parallel.

Further, for sufficiently large sequential files, you can assign multiple readers. If you assign N readers, each processes 1/N of the lines in the file.