Search found 4605 matches
- Thu Apr 28, 2005 11:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Make uvsh SQL output columnar instead of vertical
- Replies: 8
- Views: 3301
The control chars are form feeds or clear screen codes for your term type. You can SET.TERM.TYPE to any defined at the UNIX level in terminfo. You can also suppress your column headings and regular headings with COL.HDR.SUPP and HDR.SUPP or something close to that. Do HELP COL. and see what comes up...
- Thu Apr 28, 2005 4:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: adding job parameter to many jobs
- Replies: 6
- Views: 1574
There are several routines posted that will do this. I posted one, Ray and Ken also posted routines. A more complete solution is to buy Parameter Manager from www.tools4datastage.com.
- Wed Apr 27, 2005 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Make uvsh SQL output columnar instead of vertical
- Replies: 8
- Views: 3301
- Wed Apr 27, 2005 4:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Make uvsh SQL output columnar instead of vertical
- Replies: 8
- Views: 3301
- Wed Apr 27, 2005 3:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Make uvsh SQL output columnar instead of vertical
- Replies: 8
- Views: 3301
- Wed Apr 27, 2005 1:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: account hash files usage
- Replies: 8
- Views: 2142
- Tue Apr 26, 2005 3:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Achieving Right Outer join in a Server Job
- Replies: 10
- Views: 2232
- Tue Apr 26, 2005 3:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage permissions question
- Replies: 6
- Views: 1507
- Mon Apr 25, 2005 1:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: RT_LOGNN latest run only
- Replies: 10
- Views: 3616
- Mon Apr 25, 2005 1:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequence
- Replies: 9
- Views: 2958
- Mon Apr 25, 2005 7:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: RT_LOGNN latest run only
- Replies: 10
- Views: 3616
Code: Select all
select
TIMESTAMP,
SEVERITY,
FULL.TEXT
from
RT_LOG32
where
EVAL \"@ID\" NOT LIKE '//%'
AND @ID > CAST(EVAL "FIELD(TRANS('RT_LOG32','//JOB.STARTED.NO',1,'X'), @SVM, 1)" AS DECIMAL)
order by
@ID
;
- Sun Apr 24, 2005 6:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to run Analyze Table in DS?
- Replies: 6
- Views: 1415
- Sun Apr 24, 2005 6:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgaradation from 6.0.1 to 7.5 or 7.5A?
- Replies: 9
- Views: 3882
- Sat Apr 23, 2005 11:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgaradation from 6.0.1 to 7.5 or 7.5A?
- Replies: 9
- Views: 3882
The memory leak appears to be an Oracle client issue. We have 2 versions of 8.1.7. The test and dev versions are the same and there is no leak. The production version is different and does not have the issue. The Oracle 9.2 version works as well. It only works with the Oracle 8 OCI plug in. We do no...
- Fri Apr 22, 2005 3:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: getting metadata using a shell script
- Replies: 8
- Views: 1686
The EVAL is a column on the fly without creating the dictionary item. I posted dictionary items recently to get the column names and lengths. Do a search if you cannot find them then let me know. Do an exact search for ColNames or MvCols. You already have the job name and link name in the previous S...