Search found 53125 matches

by ray.wurlod
Fri Aug 20, 2004 6:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Julian Dates to Regular Dates
Replies: 7
Views: 1691

All of the previous responses are correct if, by "Julian dates", you mean a date containing the ordinal number of the day within the year. If you mean some other form if Julian date, such as the ordinal number of the day in the century, or since some given "day zero", then techniques are similar but...
by ray.wurlod
Fri Aug 20, 2004 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning DS server
Replies: 20
Views: 7887

Just out of curiosity, does the IPC stage manifest the same problems?
by ray.wurlod
Fri Aug 20, 2004 6:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing the current directory
Replies: 1
Views: 730

There's a subroutine called !MAKE.PATHNAME in DataStage BASIC that will construct a fully qualified pathname. If you leave the first argument as a zero-length string, it will return the fully-qualified pathname of its second argument. (And if you leave both empty, it returns the fully-qualified path...
by ray.wurlod
Fri Aug 20, 2004 5:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get latest log info of a job
Replies: 3
Views: 1161

Welcome aboard! :D In the Director client, log view (the "open book" tool), log entries are - by default - sorted in date/time order, so that the most recent are at the end. You can change the sorting order by double-clicking the the grid header. At the right hand side is a hidden column (that you c...
by ray.wurlod
Fri Aug 20, 2004 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Definition Repository
Replies: 9
Views: 2144

I recently completed a "best practices audit" for a client. One of the not-so-best practices I uncovered was use of the Saved category of Table Definitions. Developers (properly) use this as temporary storage for example to migrate column definitions from the input side of an Aggregator stage to the...
by ray.wurlod
Fri Aug 20, 2004 5:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error : unable to map file
Replies: 6
Views: 4454

"Go" in French maps to "GB" in English. :wink:

Unfortunately I can't help with the actual problem.
by ray.wurlod
Fri Aug 20, 2004 4:58 am
Forum: General
Topic: uv commands failing????
Replies: 6
Views: 3743

This - or something quite like it - can also happen when you construct queries in something like Microsoft Word when it has the "replace straight quotes with smart quotes" enabled. :roll:
by ray.wurlod
Thu Aug 19, 2004 9:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Job - retrieving Logs
Replies: 24
Views: 9196

The "driver" is the uv command. For example, assuming that the DataStage bin directory is in PATH and that your current working directory is the project directory: uv "SELECT COUNT(*) FROM DS_JOBS WHERE NAME NOT LIKE '\\%';" Metadata for the DataStage repository tables is not in th...
by ray.wurlod
Thu Aug 19, 2004 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SSA-NAME3
Replies: 0
Views: 658

SSA-NAME3

Is anyone using SSA-NAME3 with DataStage?

If so, how do you manage the interface between the two pieces of software; that is, how do you call the SSA-NAME3 functionality from DataStage? Do you consider that the performance penalty is within acceptable bounds?
by ray.wurlod
Thu Aug 19, 2004 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Controller problem: Unhandled failure
Replies: 4
Views: 2094

DSJ.ME is not a job name, it's a job handle. Deep within DSLogWarn, therefore, an "invalid data type" error has been generated, but not handled. Hence "unhandled failure". What you should have written was $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF JobName = DSGetJobInfo(Arg1, DS...
by ray.wurlod
Thu Aug 19, 2004 4:49 pm
Forum: General
Topic: uv commands failing????
Replies: 6
Views: 3743

For various reasons to do with the inner workings of DataStage, JOBNO is not a numeric column. Therefore, it must be quoted in the WHERE clause.
by ray.wurlod
Thu Aug 19, 2004 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: WARNING MESSAGE
Replies: 9
Views: 3099

Kind of funny, but I've been doing this since 1998 and I've never seen that message. You only ever get this message if a user ID logs in and is allocated a "UniVerse" user number that was formerly owned by a recently logged out different user ID. So you would never see it, for example, where everyo...
by ray.wurlod
Thu Aug 19, 2004 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General repository interface 'other error'
Replies: 4
Views: 3059

It means exactly what it says, it's having a problem invoking DSRunJob when the job name is UKWH_ARRG_FIN_INFO_IntInup2job.Load_InterestOutstandingLess2Months Check that the job is in a runnable stage, compiled, all that kind of thing. It appears to be a multi-instance job (because of the "."). Is i...
by ray.wurlod
Thu Aug 19, 2004 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning DS server
Replies: 20
Views: 7887

Purging of DataStage job logs

Best practice is to have automatic log purging enabled, and to perform manual log purging when a large number of events is logged. Automatic log purging is triggered when a job completes successfully. It is not triggered if the job fails to complete successfully. You may need to propagate automatic ...
by ray.wurlod
Thu Aug 19, 2004 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BulkLoad
Replies: 1
Views: 711

You can run a subsequent pair of jobs to FTP the control and data files to the other server. Or simply run the FTP from a BAT file, perhaps from an after-stage or after-job subroutine. You can use a "remote shell" or "remote execution" or "remote login" script (BAT file) to execute the bulk loader. ...