Search found 53125 matches
- Wed Dec 19, 2007 4:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Issue while executing SQL proc from DS
- Replies: 3
- Views: 1368
- Wed Dec 19, 2007 4:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ulimit -a shows different with the same id
- Replies: 17
- Views: 8698
Routines run from the test grid are executed by dsapi_slave. It is that user whose data stack size is limited. You can not infer anything from this. You need to execute the ulimit -a command from within a running job (perhaps as a before-job subroutine via ExecSH) to find out what's really happening.
- Wed Dec 19, 2007 4:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Running Logic
- Replies: 40
- Views: 5322
- Wed Dec 19, 2007 4:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job sequencer aborts
- Replies: 4
- Views: 903
It isn't C:\Test.txt though, is it? The error message complains about /PROD/etl/Prod_Folder/CLIENT/LH/holdings.TXT as the file that could not be found. Presumably it is the file created by the first job - can you confirm whether this is the case? Then you will need to diagnose why and how the second...
- Wed Dec 19, 2007 4:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: attaching 0 before an integer
- Replies: 5
- Views: 1311
You've all missed the vital Len() function. Assuming the target is a string data type: The conversion to string for the Len() function will occur implicitly.
Code: Select all
Str('0',11-Len(input column)):input column - Wed Dec 19, 2007 4:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: difference between lookup, join and merge in datastage
- Replies: 2
- Views: 5131
- Wed Dec 19, 2007 4:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: IN clause in transformer
- Replies: 11
- Views: 10367
- Wed Dec 19, 2007 4:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem while compaling in tranformar stage
- Replies: 9
- Views: 2099
- Wed Dec 19, 2007 4:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: uvsh command running for long time
- Replies: 4
- Views: 1979
Redirection within DataStage/SQL is not permitted. The required permutation is
Code: Select all
$DSHOME/bin/uvsh "select * from DS_JOBS;" > jobname.txt- Wed Dec 19, 2007 3:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel Jobs Complilation problem
- Replies: 11
- Views: 3846
- Wed Dec 19, 2007 3:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to transfer file from Mainframe to UNIX
- Replies: 9
- Views: 2307
- Wed Dec 19, 2007 3:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: job aborted because of heap size
- Replies: 8
- Views: 3172
- Wed Dec 19, 2007 3:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQLPrepare problem
- Replies: 5
- Views: 1585
Whenever a BCI function returns SQL.ERROR you must remove the error information from the handle. It is pointless proceeding until you have done this. Repetitively call SQLError() until it returns SQL.NO.MORE.DATA. Search the forum for examples. You can not simply assume that everything works when us...
- Wed Dec 19, 2007 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job locked, clean up resources not working
- Replies: 12
- Views: 5123
- Wed Dec 19, 2007 3:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple SQL statements in ODBC stage
- Replies: 1
- Views: 931
Not possible. And what you're doing has to be done in a stored procedure; the ODBC stage only permits regular DML statements. In DataStage you would be easier selecting week (and year) and performing the transformation to quarter within a Transformer stage. Use a single query. SELECT W_wk, Y_YR FROM...