Search found 53125 matches

by ray.wurlod
Sun Aug 26, 2012 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up failure
Replies: 4
Views: 1640

In the Lookup stage you can specify how you want failed lookups to be handled. Generating an error is only one possibility. There are four in all.
by ray.wurlod
Sun Aug 26, 2012 1:52 am
Forum: General
Topic: IIS Architecture Diagram for version 8.X
Replies: 4
Views: 1808

IBM web sites. Some of the white papers have good overall architecture diagrams. Another good source is IBM training materials.
by ray.wurlod
Sun Aug 26, 2012 1:51 am
Forum: General
Topic: First Process get triggers for the following product
Replies: 6
Views: 1893

QualityStage jobs in version 8 run using the parallel execution engine, which runs as osh. The first process to start is the conductor process (osh) which triggers section leader processes on each node (osh) which, in turn, fork player processes (osh) on each node. The engine is the "PX engine&...
by ray.wurlod
Fri Aug 24, 2012 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning for Aggregator
Replies: 5
Views: 1908

Nothing is mandatory. But think about what will happen if you don't partition on the first sort key value. The same value of the first sort key may occur on more than one partition which means you will end up with more groups than there really are.
by ray.wurlod
Fri Aug 24, 2012 4:39 am
Forum: General
Topic: Reset mutiple jobs together
Replies: 6
Views: 1354

(no access to unix account)
:wink:
by ray.wurlod
Fri Aug 24, 2012 4:38 am
Forum: General
Topic: Strange termination of Sequence job
Replies: 8
Views: 3785

I doubt that no log is produced. Have you checked the base job as well as the individual instances in Director?
by ray.wurlod
Fri Aug 24, 2012 4:36 am
Forum: General
Topic: Reset mutiple jobs together
Replies: 6
Views: 1354

Yes. You can create sequences that reset jobs automatically (if required) before they run.
You can create a routine that runs through all of the jobs in the project and resets any that require it. You could also create a job that performs that task.
by ray.wurlod
Fri Aug 24, 2012 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing file name with records while reading multiple files
Replies: 2
Views: 1172

Look in the Available Properties to Add pane in the Sequential File stage. There is a property that allows you to specify the column name that will receive the file name. Make sure that a column of that name occurs on the output link.
by ray.wurlod
Fri Aug 24, 2012 2:11 am
Forum: General
Topic: Getting the list of jobs in a sequence
Replies: 3
Views: 1202

Design-time or run-time? The jobs that are actually executed from a sequence may be a subset of the job activities that occur in the sequence, depending upon the logic of the sequence. Design time: look on the Dependencies tab in the sequence design. Run time: look in the "summary of sequence r...
by ray.wurlod
Thu Aug 23, 2012 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing the WVARCHAR column into a VARCHAR database column
Replies: 9
Views: 19980

Convert from ustring to string within your DataStage job, using either a Modify stage or a Transformer stage.
by ray.wurlod
Thu Aug 23, 2012 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Data Removal
Replies: 13
Views: 3369

A Data Set consists of a single ".ds" file which points to multiple data, or "segment" files. Even when you truncate a Data Set the ".ds" file retains its pointers to the data files; it is these that are emptied.
by ray.wurlod
Thu Aug 23, 2012 9:06 pm
Forum: General
Topic: Server Job Control GOTO command label variable?
Replies: 1
Views: 778

Not possible. But there is a computed GOTO statement.

Code: Select all

ON integervalue GOTO label1,label2,label3,...
by ray.wurlod
Thu Aug 23, 2012 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Data Removal
Replies: 13
Views: 3369

NO, NO and NO.

The .ds file does not contain data, and thus must not be truncated.

Use orchadmin truncate, as Arnd advised, to empty the Data Set of records.
by ray.wurlod
Thu Aug 23, 2012 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning for Aggregator
Replies: 5
Views: 1908

It usually suffices to partition on just the first grouping (sorting) key. If this has only a few values in its domain, add the second grouping (sorting) key to the partitioning algorithm too.
by ray.wurlod
Wed Aug 22, 2012 7:36 pm
Forum: General
Topic: multi byte chr that NVarchar / NChar data type can support?
Replies: 2
Views: 1107

The empty set. With NLS not installed, DataStage uses ASCII internally. ASCII is a single-byte character set.