Search found 53125 matches

by ray.wurlod
Sat Sep 27, 2003 7:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handling Best Practices?
Replies: 15
Views: 5250

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.
by ray.wurlod
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...
by ray.wurlod
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

Do you really want to delete the jobs (!), or the log entries associated with the instance of the job?
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
Fri Sep 26, 2003 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job abort
Replies: 6
Views: 1962

You can set defaults in the Director (Tools > Options). These defaults are honoured by subsequent dsjob -run invocations.

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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

I can't say without checking. Haven't looked at the sample since release 3.x. Really busy at the moment, so this won't happen soon. Sorry.

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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

Kim,

Not 100% certain that utility would work for PX jobs.

Ray

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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...
by ray.wurlod
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...
by ray.wurlod
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

Or choose the Grid Style GUI [:D]

Ray Wurlod
Education and Consulting Services
ABN 57 092 448 518
by ray.wurlod
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

You may find it easier to use the log-inspection options of the dsjob command. -logsum returns a summary of log contents -lognewest returns the newest event number of a particular type -logentry returns the detail of a particular entry Ray Wurlod Education and Consulting Services ABN 57 092 448 518
by ray.wurlod
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

Is 6.0.1 certified for operation on Windows 2003?