The default for a job sequence is DSAttachJob(jobname,DSJ.ERRNONE).
This prevents propagation of exit status to parent, asserting that the parent's job control code will handle it.
Search found 53125 matches
- Sat Sep 27, 2003 7:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Exception Handling Best Practices?
- Replies: 15
- Views: 5250
- Sat Sep 27, 2003 12:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Issu with User Generated SQL DS6.0R3
- Replies: 7
- Views: 1815
The error means that the number of columns provided in your DataStage job (column metadata) is fewer than the number of parameter markers in the SQL. This may occur, for example, if your DataStage job provides a key column but the user-defined SQL relies upon a sequence to provide the key value in t...
- Sat Sep 27, 2003 12:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deleting Jobs Attached with Invocation ID
- Replies: 5
- Views: 1719
- Sat Sep 27, 2003 12:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing an array as parameter
- Replies: 13
- Views: 2874
The function for converting a pipe-delimited array to a field-mark delimited array is, as Ken suggested, Convert (assuming there are no pipe characters in your data). The function for converting back again is also convert. DynArray = Convert("|", @AM, PipeArray) PipeArray = Convert(@AM, "|", DynArra...
- Sat Sep 27, 2003 12:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Access Methods
- Replies: 6
- Views: 1667
On Windows platforms DataStage can make use of "external functions" (exposed from ActiveX controls) as transformation functions. You will find that performance leaves something to be desired. The BCI functions available within DataStage BASIC permit you to access SQL Server (and other databases) via...
- Fri Sep 26, 2003 11:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Exception Handling Best Practices?
- Replies: 15
- Views: 5250
The parent job in the sequence may or may not get to hear about it, depending on the second argument value to DSAttachJob() that is generated. Check out the on-line help for DSAttachJob to see what I mean: what the difference is between DSJ.ERRFATAL, DSJ.ERRWARN and DSJ.ERRNONE. Ray Wurlod Education...
- Fri Sep 26, 2003 4:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparing to @ID
- Replies: 4
- Views: 1138
More DS users are likely to be familiar with CAST (which is part of the SQL standards) than with EVAL, which isn't the same thing at all. CAST effects a temporary data type change, EVAL generates am on-the-fly value. Yes, I can take a joke (just see my pictures on DSXchange), but I also like to be a...
- Fri Sep 26, 2003 4:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job abort
- Replies: 6
- Views: 1962
- Fri Sep 26, 2003 4:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: problem with Passive plugin samples
- Replies: 3
- Views: 1013
- Fri Sep 26, 2003 4:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to compile jobs from UNIX prompt
- Replies: 4
- Views: 1379
- Thu Sep 25, 2003 10:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to compile jobs from UNIX prompt
- Replies: 4
- Views: 1379
No facility is provided by Ascential for compiling jobs from the command line on the DataStage server. The CompileAll tool, available from this site, can be used to institute multiple job compilations (via standard Windows multi-select). As for accessing your jobs from the Projects directory, this i...
- Thu Sep 25, 2003 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: comparing to @ID
- Replies: 4
- Views: 1138
The technically correct way in SQL is to use a CAST. UPDATE RT_LOG1111 SET TYPE = 0 WHERE CAST (@ID AS VARCHAR) LIKE '//SEQUENCE.NO%'; You can use CHAR or VARCHAR, though with CHAR you will also need a maximum length (VARCHAR has a default maximum length of 254). The LIKE operator requires string da...
- Thu Sep 25, 2003 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using an Oracle table as a lookup
- Replies: 4
- Views: 926
- Thu Sep 25, 2003 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running scripts on log files
- Replies: 4
- Views: 1265
- Thu Sep 25, 2003 4:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problems with Datastage 6.0.1 on Win2003
- Replies: 3
- Views: 973