Search found 53125 matches

by ray.wurlod
Fri Jul 04, 2008 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing a message when my job is Successful
Replies: 1
Views: 877

Use an after-job subroutine to test the interim status of the job and to write your file based on that condition. If DSGetJobInfo(DSJ.ME, DSJ.JOBINTERIMSTATUS) = DSJS.RUNOK Then Call DSExecute("UNIX", "echo " : DSJobName : " is success. > filepath", Output, ...
by ray.wurlod
Fri Jul 04, 2008 4:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing a line to my output File
Replies: 1
Views: 655

In a Before Job subroutine echo the desired line into the file.
In the Sequential File stage, append to the file.
by ray.wurlod
Fri Jul 04, 2008 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect client but console ok
Replies: 7
Views: 2660

I suspect that it's none of those, but that you don't have any IS user that is properly credentialled to use DataStage.

In the IS Admin web console, choose Domain Management, then DataStage credentials. At the very least set up a default DataStage user ID.
by ray.wurlod
Fri Jul 04, 2008 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Steps involved in Deployment
Replies: 4
Views: 1061

Deployment on what?

If you need to ask this question then maybe you need a new nick.
by ray.wurlod
Fri Jul 04, 2008 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg- JOb design
Replies: 2
Views: 804

a) with my usual professionalism
b) compliance with customer's in-house standards
c) accuracy, auditability, recovery, efficiency
by ray.wurlod
Fri Jul 04, 2008 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read Line feeds in seqential file stage
Replies: 10
Views: 3127

Try pre-processing the file to eliminate the linefeeds that follow "Z" characters, and rely on the definition of "Z" as the record delimiter.

You should also be able to edit the table definition to indicate that the column in question contains line terminator characters (linefeeds).
by ray.wurlod
Fri Jul 04, 2008 4:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Section Leaders
Replies: 4
Views: 2833

5MB score is BLOODY HUGE (pardon my language)!

A typical score is only a couple of tens of KB.
by ray.wurlod
Fri Jul 04, 2008 4:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp convertion needed for Oracl Insert
Replies: 8
Views: 3978

Substrings() is slightly less efficient, because it carries within it the ability to deal with multi-valued data. Prefer Left() and Right() functions or the square bracket notation for substringing.
by ray.wurlod
Fri Jul 04, 2008 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Server 7.5.1A migration issue to 7.5.3
Replies: 16
Views: 8460

You were relying on something that did not work properly, and has now been fixed. The patch will un-fix it, so that previous behaviour can resume. A better solution would be to get the logic of the job design correct.
by ray.wurlod
Fri Jul 04, 2008 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge stage in server jobs
Replies: 6
Views: 3565

The Merge stage performs a join between two text files. I do not know whether entering the temporary directory is mandatory, but attempting to compile without it filled in will answer that question.
by ray.wurlod
Fri Jul 04, 2008 4:27 am
Forum: General
Topic: Version 8 to solve backup and access permission problems?
Replies: 6
Views: 3879

I establish a regime of automatic exports using a BAT file on the client. Several others have too - a search of the forum ought to elicit one or two examples. By that means I can always recover individual DataStage components should the need arise.
by ray.wurlod
Fri Jul 04, 2008 4:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error
Replies: 3
Views: 1363

"Variable not assigned" will not be generated unless you (that is, the code) tries to access that variable. A Transformer with only a single output link does not need to. The cause can only be poor code generation. Examine the code produced by the Transformer stage (in the RT_BPnnn directory) to see...
by ray.wurlod
Fri Jul 04, 2008 4:22 am
Forum: Site/Forum
Topic: Delete is not working in ODBC stage for SQL server 2000
Replies: 4
Views: 3298

Please explain how this is a comment about the DSXchange site/forum, and then post your question in the correct forum.
:roll:
by ray.wurlod
Thu Jul 03, 2008 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error
Replies: 3
Views: 1363

Probably that the REJECTED link variable is not correctly initialized. This - if my diagnosis (based on your description) is correct - is a bug in the product, one about which you can do nothing.
by ray.wurlod
Thu Jul 03, 2008 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create and use parallel Routines
Replies: 2
Views: 1064

Welcome aboard. Firstly, I would ask why you feel you have to convert server routines to parallel ones. Given the level of expertise apparent in your question, I'd recommend hiring IBM Software Services or a competent consultant. The language for parallel routines is C++. The only way to "convert" i...