Xmeta table which stores run the time job parameter values

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
venkat626
Participant
Posts: 35
Joined: Thu Feb 14, 2013 7:19 am

Xmeta table which stores run the time job parameter values

Post by venkat626 »

Hi,

Good Day!,

Is there any Xmeta table which stores the runtime job parameter values of all jobs within a project?


Regards
Venkat
rkashyap
Premium Member
Premium Member
Posts: 532
Joined: Fri Dec 02, 2011 12:02 pm
Location: Richmond VA

Post by rkashyap »

Multiple executions of a job can have different runtime job parameter values. Are you using operations console? If yes, then use following query

Code: Select all

SELECT 
       H.HostName
     , J.ProjectName
     , J.JobName
     , P.ParamName
     , P.ParamValue
     , R.InvocationId
     , R.RunStartTimeStamp 
     , R.ElapsedRunSecs
FROM  
       DSODB.JobExec J
     , DSODB.JobRun R
     , DSODB.Host H;
     , DSODB.JobRunParamsView P
WHERE  H.HOSTID = J.HOSTID
  AND  R.JOBID = J.JOBID
  AND  R.RUNID = P.RUNID
venkat626
Participant
Posts: 35
Joined: Thu Feb 14, 2013 7:19 am

Post by venkat626 »

Thanks, Yes i am using operation console only. I will test the query and will contact you if any issues.

Thank you.
Post Reply