Search found 68 matches

by devnhi
Tue Jul 28, 2009 7:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS_AUDIT
Replies: 7
Views: 3847

I am using the sql of /dsadm/Ascential/DataStage/DSEngine/bin/uvsh "SELECT DISTINCT SUBSTRING(DTM FROM 1 FOR 10),REASON FMT '50L' FROM UNNEST DS_AUDIT ON MODS WHERE INSTANCE='jobname'GROUP BY REASON,DTM SUPPRESS COLUMN HEADING COUNT.SUP NO.PAGE;" and I want to limit this to current date. /...
by devnhi
Tue Jul 28, 2009 6:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS_AUDIT
Replies: 7
Views: 3847

DS_AUDIT

Hi From a project , if suppose I want to find out the list of jobs that are updated for current date for any reason , is there any way I can do that ? I am actually trying to get that from DS_AUDIT table ,but failed to compare the 2 data types of DTM and CURRENT_DATE in uv Sql. Can anybody please he...
by devnhi
Tue Jul 28, 2009 6:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppress Page Breaks from the UV Query Result
Replies: 2
Views: 932

Suppress Page Breaks from the UV Query Result

Hi When I am running the uv queries , I am getting some page breaks in middle of the Results and it resulting some 20 results from the table and asking to press any Key for Continue. Can Anybody please help me in finding out a way to get all the results on the same page or how to increase the Outcom...
by devnhi
Thu Jun 25, 2009 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get List of Jobs in a category and store them into a file
Replies: 4
Views: 2226

Thanks Craig....This really works . Thanks a lot.
by devnhi
Wed Jun 24, 2009 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get List of Jobs in a category and store them into a file
Replies: 4
Views: 2226

Thanks for your Quick response .

Actually even though I was selecting only the names of the jobs it was returing the categories .So I was just wondering like , will there be any other way to overcome it .

I will then try the other way around per your suggestion.
by devnhi
Wed Jun 24, 2009 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get List of Jobs in a category and store them into a file
Replies: 4
Views: 2226

Get List of Jobs in a category and store them into a file

HI All Is there any way we can find out the list of jobs that are in a specified Category and store the result in a file . I have tried command : /dsadm/Ascential/DataStage/DSEngine/bin/uvsh "SELECT NAME FMT '50L', CATEGORY FMT '200L' FROM DS_JOBS WHERE CATEGORY LIKE '%Playground%' COUNT.SUP ;&...
by devnhi
Fri Jun 19, 2009 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp
Replies: 1
Views: 605

BuildOp

Hi I am working on creation of a buildop which stores all the records from the input into memory .Here by I am using the code like: readRecord(MainInput.portid_); while(!inputDone(MainInput.portid_)) { // Transfer column values from the master_in link to the master_out link doTransfer(0); OutLink.IN...