Search found 53125 matches
- 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...
- 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...
- 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...
- 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
- Tue Jan 08, 2008 4:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sun Solaris & Datastage 7.5 Problems
- Replies: 10
- Views: 6166
- 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
- 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
- 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...
- 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...
- 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 ...
- 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...
- 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
- 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
- Tue Jan 08, 2008 3:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Backup of the project
- Replies: 4
- Views: 1248
- 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 ...