Search found 36 matches

by informdaya@gmail.com
Sat May 25, 2013 10:33 am
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

i am not sure..what is going wrong.
how can i capture job statistics in table.
i was suppose call this routine everytime,whenerver one job call and it will capture job statistics in our table.
by informdaya@gmail.com
Sat May 25, 2013 8:33 am
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

I am added several DSLogInfo() in my code.
In place i have added it for OsStatus code.

During Routine Testing I am getting OsStatus return code =0
But in Routine Activity I am getting OsStatus return Code=4 ,
means DB2 command or SQL statement error . Iam still not able to find root cause of it.
by informdaya@gmail.com
Fri May 24, 2013 6:07 pm
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

See routine is executing and finishing sucessfully. But in routine i am inserting one record per job execution. So,here record is not inserted for this case[routine called from activity stage]. But if i test with passing proper arguments,record is being inserted in database. Why could be the issue? ...
by informdaya@gmail.com
Thu May 23, 2013 7:25 pm
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

ROUTINE IS GIVING ISSUE PLEASE HELP

Hi Ray, the warnings already resolved now. Now my concern is i am not able excute it in routine activity stage. i can test the routine and output is being written to database. I am not able to find out why this routine is not executing in routine activity stage. if i need to trace it in some place/f...
by informdaya@gmail.com
Thu May 23, 2013 2:13 pm
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

ROUTINE IS GIVING ISSUE PLEASE HELP

Hi Mike, Now routine is working when i am testing. But when i am testing in a routine activity stage with same parameter its not working. please help. logs: Arg1 = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' Arg2 = 'XXXXX' Arg3 = 'XXXXX' Arg4 = 'XX...
by informdaya@gmail.com
Thu May 23, 2013 12:48 pm
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

ROUTINE IS GIVING ISSUE PLEASE HELP

Now routine is excuting when i am testing. But when i put this to routine activity stage it is not working. Please help.
by informdaya@gmail.com
Thu May 23, 2013 11:09 am
Forum: General
Topic: ROUTINE IS GIVING ISSUE PLEASE HELP
Replies: 15
Views: 6270

ROUTINE IS GIVING ISSUE PLEASE HELP

$INCLUDE DSINCLUDE JOBCONTROL.H FLAG=0 InRowCount=0 OutRowCount=0 RejRowCount=0 Call DSLogInfo('Running Routine', RtnValidateLinks) Call DSLogInfo('Using Param' : Arg1,RtnValidateLinks) JobName=Field(Arg1,';',1) StgLink_Name=Field(Arg1,';',2) JobHandle=DSAttachJob(JobName , DSJ.ERRFATAL) JobStatus=...
by informdaya@gmail.com
Sun May 12, 2013 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental load solution required.
Replies: 4
Views: 1118

Thanks everyboday. I am unable to read premium content right now.Is that mean i should go with whatever i have done?
by informdaya@gmail.com
Sat May 11, 2013 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incremental load solution required.
Replies: 4
Views: 1118

Incremental load solution required.

I need to create incremental load for 18 tables. This is how i implemented incremental load. 1. created one server job for calculating max timestamp and saved in setuser status. 2. one PX job , has a local parameter use to extract the data. (Main job for extraction) 3.One sequence job used to get as...
by informdaya@gmail.com
Thu Mar 21, 2013 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'DB2 connector' collecting method is not working in DB2 conn
Replies: 6
Views: 2693

Re: 'DB2 connector' collecting method is not working in DB2

Sorry friends.No luck..its still not working..Yes we have access to tables that hold partitioning information.
describe table syscat.tables provides all information. Do u have any other solution?
by informdaya@gmail.com
Wed Mar 20, 2013 3:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'DB2 connector' collecting method is not working in DB2 conn
Replies: 6
Views: 2693

'DB2 connector' collecting method is not working in DB2 conn

'DB2 connector' collecting method is not working in DB2 connector and job is being aborted due to this. If I use any other collecting method,its working. Error - W_VHCL_ORDR_OTHR: An error occurred while preparing the table partitioning information. The method db2CfgGet returned reason code 0, SQLCO...
by informdaya@gmail.com
Tue Jan 01, 2013 8:15 am
Forum: General
Topic: How many processes in the datastage server
Replies: 3
Views: 2554

Re: How many processes in the datastage server

Hi Selina,
if You are not running that Jobs,proceses will create based on combinality mode of all stages/operators.

Best or accurate way to see that
connect to etl server or unix box
and run the below command ps -ef | grep userid
by informdaya@gmail.com
Wed Dec 26, 2012 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need to create this hierarchial output
Replies: 3
Views: 1883

need to create this hierarchial output

Hi Hari,
i made it though 8.5 loop variables.
i understand ur logic. I will try this today and let u know if it is working.

thanks buddy.
by informdaya@gmail.com
Wed Dec 19, 2012 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need to create this hierarchial output
Replies: 3
Views: 1883

need to create this hierarchial output

i have a input like this SRC_KEY SRC_NK SRC_NAME SRC_PRNT_KEY 1 A Name_A 0 2 B Name_B 1 3 C Name_C 2 4 D Name_D 3 where pk is first two column. output will be like this ID NAME HIRCH_LVL PRNT_ID PRNT_NAME PRNT_LVL REP_LVL 1 A 1 2 B 2 1 A 1 1 3 C 3 1 A 1 2 3 C 3 2 B 2 1 4 D 4 1 A 1 3 4 D 4 2 B 2 2 4 ...