Search found 331 matches

by vamsi.4a6
Mon Nov 19, 2012 1:38 am
Forum: General
Topic: automatically handle activities that fail
Replies: 3
Views: 2310

automatically handle activities that fail

Hi i am using only one routine activity in Job Sequence which calls the server routine to get LINKROWCOUNT information $INCLUDE DSINCLUDE JOBCONTROL.H handle = DSAttachJob(argJobName,DSJ.ERRFATAL) NumRows = DSGetLinkInfo(handle, argActiveStageName, argLinkName, DSJ.LINKROWCOUNT) If NumRows < 0 Then ...
by vamsi.4a6
Mon Nov 19, 2012 1:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting Amount in integer to amount in words
Replies: 8
Views: 2144

What about the source and target details?Is it a flat file or database etc?
by vamsi.4a6
Sun Nov 18, 2012 9:41 pm
Forum: General
Topic: Import clarification
Replies: 1
Views: 1218

Import clarification

In our project we are using various generic Jobs,reusable components like server routine,parallel Jobs.Thease are very reusable components for any Project.In future I am not sure which Datastage version i am going to work.Is there any way to export these components so that these components can be im...
by vamsi.4a6
Fri Nov 16, 2012 5:47 am
Forum: General
Topic: DS JOb Command: To identify the list of jobs in a Sequencer
Replies: 4
Views: 2538

Form the dssearch comand for one Job and replace the job name.Use loop activity in datastage or loop concepts in unix to replace the Job name
by vamsi.4a6
Fri Nov 16, 2012 5:30 am
Forum: General
Topic: Server routine help
Replies: 2
Views: 1240

@ArndW

Thanks for your Input.Now the routine is working fine.The problem is Database server password is expired.
by vamsi.4a6
Fri Nov 16, 2012 12:57 am
Forum: General
Topic: Server routine help
Replies: 2
Views: 1240

Server routine help

Hi I am using below routine to load audit details for JOb in ETL_JOB_DETAIL. $INCLUDE DSINCLUDE JOBCONTROL.H $INCLUDE UNIVERSE.INCLUDE ODBC.H Deffun RtnRunSqlDo(A,B,C,D,F) Calling "DSU.RtnRunSqlDo" Equate RoutineName To "SequenceStart" JobName = Arg1 ; JobHandle = DSAttachJob(Job...
by vamsi.4a6
Thu Nov 08, 2012 1:43 am
Forum: General
Topic: Jobe type find
Replies: 1
Views: 1261

Jobe type find

HI All, I am using below code to find the Job type which is not developed by me.I understood the code except the thing highlighted in bold letters? $INCLUDE DSINCLUDE JOBCONTROL.H handle=DSAttachJob (Arg1,DSJ.ERRFATAL) if handle <> 0 Then jobName=DSGetJobInfo(handle,DSJ.JOBNAME) jobStatus=DSGetJobIn...
by vamsi.4a6
Sun Nov 04, 2012 10:19 pm
Forum: General
Topic: DSRunJob clarification
Replies: 4
Views: 1875

@Ray thanks for reply.

Is there any wat ti identify the function whether it is C language API or DataStage BASIC?
by vamsi.4a6
Sun Nov 04, 2012 10:51 am
Forum: General
Topic: DSRunJob clarification
Replies: 4
Views: 1875

DSRunJob clarification

1)When I gone through the manual the second argument for the function DSRunJob must be one ofthese three values. a)DSJ_RUNNORMAL b)DSJ_RUNRESET c)DSJ_RUNVALIDATE But in this link for DSRunJob function they used DSJ.RUNNORMAL for secong argument. Can anybody explain what is meant by DSJ.RUNNORMAL?
by vamsi.4a6
Fri Nov 02, 2012 3:56 am
Forum: General
Topic: Datastage sequence compile?
Replies: 4
Views: 3205

If u have not done any changes in the sequence no need to compile it.

Please correct me if i am wrong?
by vamsi.4a6
Mon Oct 29, 2012 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key stage not working
Replies: 4
Views: 1691

Surrogate Key stage not working

I Updated state file value with 100.Then i am using below JOb sequentialfile---->surrogateKeystage-->sequentialfileoutput o/p I am getting col1,col2,col3 "5","e","101" "1","a","1101" "6","f","2101" "4"...
by vamsi.4a6
Fri Oct 26, 2012 3:23 am
Forum: General
Topic: Passing value to parameter
Replies: 3
Views: 1966

@DS_SUPPORT

Thanks for your Input
by vamsi.4a6
Fri Oct 26, 2012 12:57 am
Forum: General
Topic: Passing value to parameter
Replies: 3
Views: 1966

Passing value to parameter

I developed a server routine which will return a value. I want to pass that value to a parameter in the Job in the Job sequence.I Know I have to use routine activity but i do not Know how to proceed furthur?
by vamsi.4a6
Wed Oct 24, 2012 5:51 am
Forum: General
Topic: List of tables
Replies: 0
Views: 645

List of tables

I am documenting my Datastage jobs present in my project.Can i know any easier way to get the following informations 1)I want to know all the tables used in an sql script/parallel job which inturn is called using a datastage sequence. 2) I want to know the sequences which use a particular table.Agai...