Search found 83 matches

by ririr
Tue Jul 08, 2008 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

I use DSJ.ERRNONE but that choice doesn't affect the attachment, only subsequent use of the handle. Have you tried actually using the handle in subsequent steps? From the docs: JobHandle is the name of a variable to hold the return value which is subsequently used by any other function or routine w...
by ririr
Tue Jul 08, 2008 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

The below code still returns an integer "0" in jHandle. when I pass the Job Name and Error Level as either DSJ.ERRFATAL or DSJ.ERRWARN.

$INCLUDE DSINCLUDE JOBCONTROL.H
jHandle=DSAttachJob(Arg1,Arg2)
Ans=jHandle
by ririr
Tue Jul 08, 2008 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

Chulett, Can you pls. shed some light for establishing a Job Handle to a given job? I tried calling the DSAttachJob function in a routine just to test it. Call DSAttachJob (Job_Handle,Arg1, Arg2) Ans=Job_Handle I passed Job Name for Arg1 and DSJ.ERRNONE and the Job_Handle returns an Integer "0&...
by ririr
Tue Jul 08, 2008 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

Chulett, Thanks for your quick response. I am calling DSGetStageInfo function in a routine just to test it. I passed the Job Name for Arg1, for Arg2 Stage Name and Arg3 Info Type (DSJ.LINKLIST) Call DSGetStageInfo (Result, Arg1, Arg2,Arg3) Ans=Result The value in the Result is a "-1". But,...
by ririr
Tue Jul 08, 2008 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

I'd like to extract the Input/Output link names in the same order as they are designed for each Stage in a give Job. example: sequential file-->transformerstage1(XX)-->transformerstage2(YY)-->DRS Sequential File Link is Input to transformerstage1 XX is the Output Link from transformerstage1 XX is th...
by ririr
Mon Jul 07, 2008 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 8708

Link Names

Hello Gurus,

I need help in extracting the Input and Output link names for a job using the Universe stage.

sequnetial file stage---> transformstage1 ---> transformstage2 ---> DRS stage


Any help with this is appreciated!
by ririr
Thu Jun 05, 2008 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: doctool question
Replies: 1
Views: 1184

doctool question

Can the Doctool (*.mdb) population (refresh) be automated the way reporting assistant within Manager does?

Aslo, is it possible to load the tables such as DSProperties, DSStages etc. in the doctool using the Universe stage?

Any help with this is appreciated.
by ririr
Fri Apr 25, 2008 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changed Data Capture questions
Replies: 6
Views: 2683

Couple things come to my mind.. Here is what we did when building ETL architecture to load data from our Mainframe system (ADABAS). Refreshed ADABAS files from Mainframe into Oracle database by utilizing "Treehouse" tool and database triggers. http://www.treehouse.com/ The full refresh was...
by ririr
Fri Dec 28, 2007 11:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RowProcCompareWithPreviousValue Routine not working...
Replies: 14
Views: 3496

Are the rows read from the source sorted?

order by Field1,Field2,Field3.

You will never get the comparison correctly if the source data is not ordered.

The routine has no restrictions on the length of the input string. Test the routine with sample data.
by ririr
Fri Dec 14, 2007 10:26 am
Forum: IBM QualityStage
Topic: Install and Configure help
Replies: 0
Views: 1066

Install and Configure help

Can anyone please share how you were able to successfully install and configure Qualitystage on Windows? In preperation to next year ETL projects, I am trying to put together estimates to install and devlop of cleansing jobs using QS. We are currently on Windows DS 7.5 server edition. Also I will ap...
by ririr
Fri Aug 11, 2006 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 3889

Thanks, Kim.

I appreciate you taking time for not only helping with the code but providing a great detailed explanation.

This will help me for sure.
by ririr
Thu Aug 10, 2006 10:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 3889

I will appreciate if you post the rest of it.
Thanks
by ririr
Thu Aug 10, 2006 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing table metadata details
Replies: 8
Views: 3889

Writing table metadata details

I am trying to write the Column Name, Group, Derivation, Key, SQL Type, Length, Scale, Nullable, Display, Data Element, Description detials to a file or to a table for all my table definitions in ODBC etc.. folders in Manager for one of my project. Just copying doesn't help. I tried Usage Analysis, ...
by ririr
Fri May 26, 2006 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DataStage Job Names and Category
Replies: 4
Views: 4574

Thank you much all for all your replies. I will try both options.
by ririr
Fri May 26, 2006 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting DataStage Job Names and Category
Replies: 4
Views: 4574

Getting DataStage Job Names and Category

I tried TCL run the following in Command Stage. But it is throwing verb not in VOC.

"COMO ON \\Server\directory\JobNames.txt, LIST DS_JOBS COMO OFF".

I am trying to load DS job names into a file.

Thanks