Search found 42189 matches
- Tue Feb 20, 2007 5:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pipes in Filter Command of Sequential file
- Replies: 13
- Views: 2787
- Tue Feb 20, 2007 4:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FMT function
- Replies: 7
- Views: 10497
- Tue Feb 20, 2007 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sort on a column
- Replies: 23
- Views: 4681
- Tue Feb 20, 2007 2:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sort on a column
- Replies: 23
- Views: 4681
- Tue Feb 20, 2007 2:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FMT function
- Replies: 7
- Views: 10497
- Tue Feb 20, 2007 12:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error while trying to retrieve text for error ORA-12154
- Replies: 10
- Views: 4182
You are configuring this for ODBC or OCI? The first two files you mentioned are for ODBC while the third is needed for OCI. LIBPATH = SHLIB_PATH on some operating systems, you set whichever is appropriate for yours. You also need to make sure ORACLE_HOME is set in the dsenv file as well, then stop a...
- Tue Feb 20, 2007 9:00 am
- Forum: General
- Topic: DataStage Basic Complier Problems
- Replies: 5
- Views: 2544
- Tue Feb 20, 2007 8:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing to sequential file
- Replies: 8
- Views: 1865
- Tue Feb 20, 2007 8:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Writing to sequential file
- Replies: 8
- Views: 1865
- Tue Feb 20, 2007 8:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: RTI package
- Replies: 6
- Views: 1483
- Tue Feb 20, 2007 8:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reding Unix Output inDS routine
- Replies: 3
- Views: 1248
Re: Reding Unix Output inDS routine
Balakrishnan wrote:var1 = Trim(UnixOutput,'@FM','')
The quotes are your problem, they turn the Field Mark system variable into just another string.
Code: Select all
var1 = Trim(UnixOutput,@FM,'')Will work a little more better.
- Tue Feb 20, 2007 8:20 am
- Forum: General
- Topic: Restarting aborted Sequence jobs with Loop stages
- Replies: 2
- Views: 1518
- Tue Feb 20, 2007 8:18 am
- Forum: General
- Topic: DataStage Basic Complier Problems
- Replies: 5
- Views: 2544
- Tue Feb 20, 2007 8:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capture Error Message in Server Routine (Transform Function)
- Replies: 5
- Views: 1899
- Tue Feb 20, 2007 1:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Capture Error Message in Server Routine (Transform Function)
- Replies: 5
- Views: 1899
After the job has run, you would fetch this information from the job's log. Techniques have been discussed here a great many times, search for the wealth of good information you'll find here. Yes, you could use another job that leverages the various 'DSGet' functions that access log information, or ...