Search found 53125 matches

by ray.wurlod
Tue Jul 25, 2006 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Extraction
Replies: 7
Views: 1727

The audit table can also be useful in recovery after failure if you need to re-run the extractions. (Though, if you use a staging area, you won't need to go right back to original source.)
by ray.wurlod
Tue Jul 25, 2006 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters
Replies: 5
Views: 732

A job batch (created in Director) is a job sequence, though with far less control over what's happening. Take the trouble to learn the job sequence GUI; you won't regret it.
by ray.wurlod
Tue Jul 25, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB Attributes
Replies: 8
Views: 1884

Type dsjob alone (no parameters) to get the top-level syntax.

Type dsjob -run (no further parameters) to get the syntax for running jobs.

Cross-reference what you learn here back to the manual.
by ray.wurlod
Tue Jul 25, 2006 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help on Ds log files
Replies: 8
Views: 1765

Do you have a consistent naming convention for the input link to the target stage and for the output link from the source stage? And for the stages themselves? And for the intermediate active stage (which you will need for DSGetLinkInfo)? If not, some complexity will be introduced, and you may be be...
by ray.wurlod
Tue Jul 25, 2006 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence restart
Replies: 6
Views: 3810

No kind of job can reset itself. It must be reset from a higher level. Perhaps you need to build a master job sequence.
by ray.wurlod
Tue Jul 25, 2006 3:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Universe/hashfiles using odbc stage in PX jobs
Replies: 4
Views: 1754

You can also use External Source or External Target stages if the number of records is small, using the somewhat less efficient UVread and UVwrite executables. Note that these stages will need to be constrained to execute in a node pool all of whose nodes are on the same machine as the DataStage ser...
by ray.wurlod
Tue Jul 25, 2006 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating a shared container
Replies: 4
Views: 1087

You must specify any field on which you want to perform any kind of operation (such as Trim() in your case). Therefore RCP is not going to help. Nor is a shared container unless metadata are identical. Investigate propagating derivation expression ("derivation substitution") within the Transformer s...
by ray.wurlod
Tue Jul 25, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenating Fields in DataSets
Replies: 9
Views: 2010

What - precisely - is coming from the mainframe? Are there any packed decimal fields? Do you have a COBOL FD? Did you import the table definition from that?
by ray.wurlod
Tue Jul 25, 2006 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: probelm reading signed packed data using CCF
Replies: 2
Views: 889

If the record delimiter really is 0x0A you can specify "UNIX newline" for this property. Or you can specify the three digit decimal code (010).
by ray.wurlod
Tue Jul 25, 2006 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: type conversion
Replies: 6
Views: 2288

An import error occurs in an importing stage, not in a Transformer stage. It has no relationship, therefore, to the function you have described. Inspect the generated OSH, determine which stage generates an import operator. Add a rejects link to that stage, leading into a Peek stage so you can see w...
by ray.wurlod
Tue Jul 25, 2006 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorporating Parallelism
Replies: 19
Views: 4556

In a job control routine (or job sequence).
by ray.wurlod
Tue Jul 25, 2006 3:09 pm
Forum: IBM QualityStage
Topic: Regarding Running QS jobs
Replies: 3
Views: 1506

There is a command line interface for QualityStage (if that's all you want to do). There are three scripts (in the Scripts directory) for each deployed job; one suffix for each run mode. See page 8-8 of the QualityStage Designer User Guide for more information, If you are invoking QualityStage from ...
by ray.wurlod
Tue Jul 25, 2006 2:50 pm
Forum: General
Topic: subroutine
Replies: 3
Views: 3545

Re: subroutine

Can any one tell me how to craete a before job subroutine using basic functions for data cleansing. I need subroutine code for data cleansing. You create the routine as type "before/after subroutine" in the Routines branch, and refer to it in the job properties dialog in the before-job subroutine f...
by ray.wurlod
Tue Jul 25, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of job parameter in user defined SQL in input ODBC stage
Replies: 3
Views: 1034

:!: Never make table name a parameter if you ever want usage analysis or lineage analysis or impact analysis to work properly.