Search found 53125 matches

by ray.wurlod
Sat Mar 18, 2006 5:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: Cannot open file BP_11
Replies: 9
Views: 3580

Make sure all users who develop DataStage have their umask set to 002.
by ray.wurlod
Fri Mar 17, 2006 12:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error with Wait for file activity
Replies: 1
Views: 1164

Welcome aboard. :D Use the timeout to have the job sequence stop waiting after four hours. Create a separate output from the Wait For File activity, setting its trigger to "Failed" (or "Otherwise" if the first output has an "OK" trigger). The second stream can lead anywhere, maybe just to a Notifica...
by ray.wurlod
Fri Mar 17, 2006 12:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot find parameter file record DSParams in &UFD&
Replies: 12
Views: 10036

All the things you talked about - and others, like project-wide defaults for job log purging and functions and system variables that are valid in expression editor - are stored in DSParams. Get one from another project as soon as possible! &UFD& is a "file name" that DataStage uses to refer ...
by ray.wurlod
Fri Mar 17, 2006 10:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

Click on Help within the job parameters dialog to learn the difference between $ENV, $PROJDEF and $UNSET (or just search for them in Help). Yes, it will make a difference. As to the other question, on Windows you can create a different user ID for running scheduled jobs. It's to that capability that...
by ray.wurlod
Fri Mar 17, 2006 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Datastage STP stage
Replies: 4
Views: 2543

See? Now we know you're trying to connect to Oracle, and exactly what the Stored Procedure stage is complaining about. A search for "anonymous PL/SQL block" turned up this post; although it refers to the OCI stage rather than the Stored Procedure stage, it may get you going on the right track.
by ray.wurlod
Fri Mar 17, 2006 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Datastage STP stage
Replies: 4
Views: 2543

What error messages are logged? Are any more messages logged (particuarly "from previous run..." when you reset the aborted job in Director? There's not enough information in what you've posted to help us to diagnose anything. It's in the category of "my car doesn't run, can you tell me what's wrong...
by ray.wurlod
Fri Mar 17, 2006 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling routine DSSendmail
Replies: 12
Views: 8436

It's telling you that you invoked UtilityWarningToLog (presumably in a Routine activity) and that UtilityWarningToLog returned 1 (which it does) and that you did not have a trigger to handle a return value of 1. With routines the rule is that the job sequence will report a failure unless the return ...
by ray.wurlod
Fri Mar 17, 2006 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transformer output is only one row
Replies: 18
Views: 3832

You can use the Aggregator stage (rather than a Transformer stage) to return only the first or only the last of a group of identical rows.
by ray.wurlod
Fri Mar 17, 2006 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Derivation in ODBC Stage
Replies: 4
Views: 952

You can put anything in the Derivation field that you might put in a column specification in the SELECT clause, including SQL expressions, aggregate functions, and so on. Try it. Maybe something like col1 || ' -- ' || col2 or max(col4) or even DISTINCT col5 . You can add GROUP BY, HAVING and ORDER B...
by ray.wurlod
Fri Mar 17, 2006 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

All of what you've stated is cool, plus there exists the ability to specify job parameters as environment variables and set the default value there to $ENV, which means "pick up the value from the user's environment". Beware, though, that you do not run DataStage jobs; you issue run request and the ...
by ray.wurlod
Fri Mar 17, 2006 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: My Job is running very slow
Replies: 12
Views: 2954

Are you running on an MVS (Mine's Very Slow) system? :lol:
by ray.wurlod
Fri Mar 17, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: when using DB2 UDB records are dropped No warnings
Replies: 13
Views: 3768

A job sequence in which all conditions are handled will finish successfully. The very act of coding triggers to handle failures asserts that you want to specify how they're to be handled. You could include a Routine actvity calling UtilityWarningToLog if you want to force a warning message to occur,...
by ray.wurlod
Fri Mar 17, 2006 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Import error
Replies: 3
Views: 1884

81002 indicates nothing more than "no connection". Your inactvity timeout (set in Administrator) may have expired, or your agent process on the server (dscs or dsapi_slave) may have been killed.

Code: Select all

SELECT * FROM SYS.MESSAGE WHERE @ID = '081002';
by ray.wurlod
Fri Mar 17, 2006 9:41 am
Forum: Site/Forum
Topic: Enhancing the Community with ToolXchange and ResourceXchange
Replies: 6
Views: 3614

This is what's known as a Lazarus post. The original question was put in 2004. Both sites mentioned now exist - the Newsletters appear on one of them.
by ray.wurlod
Fri Mar 17, 2006 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: My Job is running very slow
Replies: 12
Views: 2954

Ah, yes, I was thinking of the ODBC replace (delete before insert). :oops: