Search found 53125 matches

by ray.wurlod
Thu May 12, 2005 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No Process Chain available
Replies: 3
Views: 1026

It looks like your SAP BW instance is busy doing other things, so can not allocate resources (process chain) to your request.
by ray.wurlod
Thu May 12, 2005 6:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 222 Phantom 26691 (Characters not in NLS map)
Replies: 7
Views: 5497

Record 4242 contains characters which are not defined in the file's NLS map.
by ray.wurlod
Thu May 12, 2005 5:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I trap the status from dsjob?
Replies: 6
Views: 1469

First call is to dsjob with -jobinfo. This returns the status. You can then make the decision about whether to use the -run option (perhaps with run mode RESET?).
by ray.wurlod
Thu May 12, 2005 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer-Routine Activity-Triggers
Replies: 4
Views: 2313

Use a Custom trigger and detect that something other than was requested was returned. For example Len(returnvalue) <> 19 (assuming that it returns an ISO 8601 TimeStamp).
by ray.wurlod
Thu May 12, 2005 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting the Looked up Data
Replies: 7
Views: 1637

It's worse than a Bad Idea - it's impossible. This is not a DataStage restriction - it's an operating system restriction. A sequential file may have N readers or 1 writer. The operative word here is or - you can't be reading and writing the same file simultaneously with standard utilities. Nor can y...
by ray.wurlod
Thu May 12, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Red Brick TMU rsh
Replies: 5
Views: 2978

It's something that the UNIX administrator on the remote machine does. Outside the scope of my expertise to provide details, I'm afraid. Try man rsh (or man remsh as appropriate) - it may help.
by ray.wurlod
Thu May 12, 2005 5:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine (Transform Function) Warning on completion
Replies: 7
Views: 1602

I missed the fact that you are passing it back to a job sequence (a separate process). System variables don't work between processes; aren't accessible in downstream activities. But you could pass it back through the job's user status area (DSSetUserStatus) rather than through Ans. To answer your or...
by ray.wurlod
Thu May 12, 2005 4:53 pm
Forum: IBM QualityStage
Topic: Delimited files
Replies: 1
Views: 1755

I think it's just a hangover from when INTEGRITY was a mainframe application (and didn't support delimited files at all). Later they introduced file format operators (to "translate" delimited files), but the start and end properties just seemed to carry through. Tell IBM.
by ray.wurlod
Thu May 12, 2005 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to query for jobs that are not using $PROJDEF
Replies: 5
Views: 1413

It's fairly standard SQL - which pieces aren't you certain about? EVAL is a UniVerse SQL extension to allow BASIC expressions to be used in much the same way that regular SQL expressions are. FMT is a keyword that overrides the default column width and justification, which is 10 characters left-just...
by ray.wurlod
Thu May 12, 2005 12:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to query for jobs that are not using $PROJDEF
Replies: 5
Views: 1413

Might be more efficient were DS_JOBOBJECTS additionally constrained only to process ROOT records, as it is only these that contain parameter collections. (Actually I need to check that - shared containers also have parameters - do they have ROOT records in DS_JOBOBJECTS?) And wouldn't SELECT DISTINC...
by ray.wurlod
Wed May 11, 2005 11:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improve Seq Stage Performance
Replies: 5
Views: 1766

Sequential File stage is the fastest of the passive stages. It has clever mechanisms, such as look-ahead and buffering, built-in. On the down side, you can't begin reading from a single sequential file until you've finished writing to it. You can with a hashed file, but it may not be appropriate to ...
by ray.wurlod
Wed May 11, 2005 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-requisites for installing 7.5 version
Replies: 6
Views: 1156

:oops: Vincent is correct, of course. Been kinda involved with parallel of late.
by ray.wurlod
Wed May 11, 2005 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Status
Replies: 5
Views: 1160

If you just want to know what server jobs and job sequences are running now, you can look at the job processes with a UNIX command.

Code: Select all

ps -ef | grep DSD.RUN | grep -v grep

Use (pipe into) cut or awk or sed or similar to produce the report you require.
by ray.wurlod
Wed May 11, 2005 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Case Conditions
Replies: 1
Views: 962

Change your SQL to include an UPPER (or is it UPCASE in Teradata) function.

Code: Select all

SELECT COL1,COL2 FROM TABLE1 WHERE UPPER(COL1) LIKE '%ABC%' 
by ray.wurlod
Wed May 11, 2005 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pre-requisites for installing 7.5 version
Replies: 6
Views: 1156

You will need an ANSI-compliant C compiler, such as Visual Studio, in addition to everything else.