Search found 53125 matches

by ray.wurlod
Tue Apr 05, 2005 6:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencing
Replies: 3
Views: 1038

Hi yourself. :lol:
by ray.wurlod
Tue Apr 05, 2005 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading stage variable in another stage
Replies: 6
Views: 2488

Add an extra column to the output link of the Transformer stage. The derivation for this column is the value of the stage variable. This remains available in downstream stages as far as you want to propagate it.
by ray.wurlod
Tue Apr 05, 2005 6:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 7.1 is not taking column name more than 18 charaters long
Replies: 2
Views: 1360

You've misread the error message. It's complaining about the eighteenth column, not about an eighteen character limit. The message is actually telling you that the data (not the column name) was truncated. That is, your metadata specifies a maximum length of N, but a value was found in the data that...
by ray.wurlod
Tue Apr 05, 2005 6:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null export handling
Replies: 9
Views: 5151

Because you have not specified null handling.
by ray.wurlod
Tue Apr 05, 2005 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to log using buildop
Replies: 1
Views: 943

DSLogInfo, DSLogWarn, DSLogFatal and DSLogEntry all exist in the C language API for DataStage.
by ray.wurlod
Mon Apr 04, 2005 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS
Replies: 2
Views: 894

NLS stands for National Language Support. It does two things. It maps characters from whatever representation they are in in external stores into and out of the DataStage internal represntation of Unicode. It manages locales (local representation) of times and dates, numeric, currency and character ...
by ray.wurlod
Mon Apr 04, 2005 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Quality stage plug-in
Replies: 4
Views: 1263

Is the QualityStage run time manager (qsrtmngr) process running? This is the mechanism through which DataStage communicates with QualityStage.
by ray.wurlod
Mon Apr 04, 2005 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 3 Servers Jobs Collapsed to One
Replies: 4
Views: 1097

OK, you can compress everything into one job, making use of the fact that a passive stage can not open its outputs until all its inputs are closed. For example: Part1 ----> SeqFile ----> Part2 ----> SeqFile ----> Part3 But I'd still advocate separate componentry (if pieces are identical put them in ...
by ray.wurlod
Mon Apr 04, 2005 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how are updates in datastage performance
Replies: 12
Views: 3846

One big difference is that the Oracle bulk loader does not do updates. Only inserts.
by ray.wurlod
Mon Apr 04, 2005 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null export handling
Replies: 9
Views: 5151

Essentially the answer is NO. NULL is a meaningless concept in a text file. If you want the internal database representation of null, you will find that this varies between databases, and would mean that your text file is probably a binary file (there's no guarantee that the internal representation ...
by ray.wurlod
Mon Apr 04, 2005 2:39 pm
Forum: IBM QualityStage
Topic: Calling QS jobs via Autosys
Replies: 2
Views: 2464

Yes, you can. There is a command line interface to QualityStage. Read about the scripting language in the QualityStage manuals. It's not as straightforward as other tools, but it's definitely possible. In its earlier incarnation (INTEGRITY from Vality) this was a stand-alone tool.
by ray.wurlod
Mon Apr 04, 2005 6:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 3 Servers Jobs Collapsed to One
Replies: 4
Views: 1097

Have you investigated job sequences?

That would give you your "way to control the execution order on a Server job and/or insert wait conditions" with the greatest of ease. It could be as simple as three dependent Job Activities.
by ray.wurlod
Mon Apr 04, 2005 1:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to give Tab Delimiter in the Text file
Replies: 3
Views: 2298

For both the delimiter character and quote character you can enter a three digit decimal number being the ASCII code of the character desired (for example 009 for Tab). If NLS is enabled you can also enter a four digit hexadecimal number being the Unicode code point of the character desired (for exa...
by ray.wurlod
Mon Apr 04, 2005 1:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shared library (infmxcli.sl) failed to load
Replies: 6
Views: 2686

Can you post those parts of dsenv in which the environment variables are set?

Can you also post the result of the command echo $PATH so we can see what's different?
by ray.wurlod
Mon Apr 04, 2005 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order of execution
Replies: 4
Views: 1340

Search the forum for how to use stage variables to remember values from the previous row. Once you can do this (which is very easy), the rest should follow.