Search found 53125 matches

by ray.wurlod
Tue Jan 08, 2008 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we run parallel jobs on windows server 2003 machine
Replies: 4
Views: 1110

The word you require is "your", not "u r". If anything, "u r" would abbreviate "you are". However, we here at DSXchange strive for a professional standard of written English, nothing less than you would use in your professional documentation or in an essay to gain some academic qualification. The r...
by ray.wurlod
Tue Jan 08, 2008 7:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problems with SQLExecDirect (again)
Replies: 37
Views: 14851

You should enclose your code in Code tags, to preserve the indenting and make it easier to understand. You should not report the status returned from SQLAllocStmt as having been returned from SQLExecDirect. That way lies utter confusion. When analyzing the error, there are three possible handles whe...
by ray.wurlod
Tue Jan 08, 2008 7:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

Wrapping your code in Code tags (to preserve the indenting) would have made that easier to see, though I admit fault for missing it. How about modifying the after-stage subroutine with some diagnostic statements so that you can see exactly what's happening? What is the value of Command if FileOutRow...
by ray.wurlod
Tue Jan 08, 2008 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scratchdisks in either the default or "buffer" poo
Replies: 1
Views: 1202

1. Read the diagnostic information carefully. It tells you precisely what the problem is.

2. Provide more scratch disk resource on every node in your configuration file.
by ray.wurlod
Tue Jan 08, 2008 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fatal error
Replies: 8
Views: 2186

Use find to search for the log file. Look first on all scratch disks defined in the configuration file used to run the job.
by ray.wurlod
Tue Jan 08, 2008 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: surrogate ky generator problem
Replies: 3
Views: 1162

Note: the generator is creating a number.

You can not apply the transformation within the generator operator. You must add the leading zeroes in a downstream Transformer stage.
by ray.wurlod
Tue Jan 08, 2008 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CoSort Versus PX
Replies: 7
Views: 1973

Not you, Joe, but how many commentators/reporters use "statistics have shown" or "studies have shown" without backing it up? That's why standards are different for academic publishing. It really exasperates me (maybe because one of my majors is in the mathematical bases of statistical theory) when p...
by ray.wurlod
Tue Jan 08, 2008 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading from Sequential File with Filter option.
Replies: 3
Views: 1230

Using a filter command puts the DataStage job second in a pipeline. Imagine in UNIX doing command1 | command2 That's what you are doing with a filter command, except that command2 is the DataStage job; the Sequential File stage stdin is fed from stdout of the filter command. The impact of a filter c...
by ray.wurlod
Tue Jan 08, 2008 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null Hadling - Server Jobs
Replies: 2
Views: 2976

To create a null in server jobs use the system variable @NULL. Server jobs only have out-of-band null; they do not really have the concept of in-band null except in the format/column properties of table definitions of, particularly, sequential files, where you specify how null is represented in the ...
by ray.wurlod
Tue Jan 08, 2008 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After Stage Subroutine
Replies: 14
Views: 3591

I can not see in CountRowOut where the row count is calculated nor where Reason is set to anything but "". On that basis, FileOutRows seems never to be set and would therefore always be 0 when accessed from CleanupFileOut. Therefore the Erase command will never be executed. Check that your routine c...
by ray.wurlod
Tue Jan 08, 2008 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we run parallel jobs on windows server 2003 machine
Replies: 4
Views: 1110

In version 8.0.1 you may run server, parallel and sequence jobs on any supported type of DataStage server. This includes the Windows Server 2003 platform.
by ray.wurlod
Tue Jan 08, 2008 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Start Date from Unix
Replies: 5
Views: 1727

... which you can isolate using grep or some similar utility.
by ray.wurlod
Tue Jan 08, 2008 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup of the project
Replies: 4
Views: 1248

I have a daily BAT file which preserves two generation of export files. It deletes the older, renames the other and exports the entire project. It is run at a time when no developer activity is occurring in the project.
by ray.wurlod
Tue Jan 08, 2008 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Where does logic go for lookup conditions
Replies: 6
Views: 1646

DataStage server jobs will only ever return the first match unless you enable multiple row return, which you can only do if the stage on the other end of your reference input link is an ODBC stage or a UV stage. Otherwise you need to find some other strategy, such as performing an outer join in the ...