Search found 4605 matches

by kduke
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...
by kduke
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.
by kduke
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

Do a TERM command to see your settings. TERM Terminal Printer Page width: 80 132 Page depth: 65 66 Page skip : 0 LF delay : 0 FF delay : 2 Backspace : 127 xterm then change it with: term 1000,65,0,0,2,127
by kduke
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

I figured that out after the post. How big can make TERM?

I think Ray posted an answer to this.
by kduke
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

Write a job. Use this SQL in a UV stage. Output to a sequential file maybe fixed length.

Please post your JOBTYPE dictionary item. Come to think of it why not have a dictionary item for DEPEND_JOBS.
by kduke
Wed Apr 27, 2005 1:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: account hash files usage
Replies: 8
Views: 2142

Ray posted SQL for hash file names. If you do a search and cannot find it then let me know. I would use this. If a hash file is used in a routine then you need to search DS_ROUTINES as well. I think this should get you close.
by kduke
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

All hash file lookups are outer joins because DataStage does not care if it finds a hash record or not.
by kduke
Tue Apr 26, 2005 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage permissions question
Replies: 6
Views: 1507

You would have to do some programming tricks. I wrote a job to email you the log file of any job. You could automatically run this at the end of a sequence for every job in the sequence. It is part of EtlStats. You can download this from my tips page.
by kduke
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

Maybe. That is what they asked for.
by kduke
Mon Apr 25, 2005 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence
Replies: 9
Views: 2958

You have to cal UtilityAbortToLog() to abort the sequence otherwise you get the warning. We call this last in the exception handler path.
by kduke
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
;
by kduke
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

We do things like this in shell scripts then use ExecSH.
by kduke
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

If you have a memory leak then you can watch the process size grow by using top or ps -ef. At some number of records it will be larger than the OS can support and will core dump. In UNIX a core file can be analyzed to find out why.
by kduke
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...
by kduke
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...