Search found 53125 matches
- Thu May 12, 2005 6:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: No Process Chain available
- Replies: 3
- Views: 1026
- 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
- 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
- Thu May 12, 2005 5:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencer-Routine Activity-Triggers
- Replies: 4
- Views: 2313
- 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...
- Thu May 12, 2005 5:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Red Brick TMU rsh
- Replies: 5
- Views: 2978
- 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...
- Thu May 12, 2005 4:53 pm
- Forum: IBM QualityStage
- Topic: Delimited files
- Replies: 1
- Views: 1755
- 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...
- 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...
- 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 ...
- 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
- 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.
Use (pipe into) cut or awk or sed or similar to produce the report you require.
Code: Select all
ps -ef | grep DSD.RUN | grep -v grepUse (pipe into) cut or awk or sed or similar to produce the report you require.
- 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%' - 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