datastage question

Archive of postings to DataStageUsers@Oliver.com. This forum intended only as a reference and cannot be posted to.

Moderators: chulett, rschirm

Locked
admin
Posts: 8720
Joined: Sun Jan 12, 2003 11:26 pm

datastage question

Post by admin »

hello everyone,
is there a command available so we can determine what job a particular
log file is associated with? i.e.
RT_LOG118 ..
any help appreciated..
Doris
<b>PLEASE READ</b>
Do not contact admin unless you have technical support or account questions. Do not send email or Private Messages about discussion topics to ADMIN. Contact the webmaster concerning abusive or offensive posts.
admin
Posts: 8720
Joined: Sun Jan 12, 2003 11:26 pm

datastage question

Post by admin »

Doris

At TCL you can do it the Universe way or in SQL.

LIST DS_JOBS WITH JOBNO = "118"

Or SQL:

SELECT * FROM DS_JOBS WHERE JOBNO = 118;

Kim.


-----Original Message-----
From: Doris Zammit [mailto:Doris.Zammit@oit.state.nj.us]
Sent: Monday, December 01, 2003 12:04 PM
To: datastage-users@oliver.com
Subject: datastage question

hello everyone,
is there a command available so we can determine what job a particular
log file is associated with? i.e.
RT_LOG118 ..
any help appreciated..
Doris
<b>PLEASE READ</b>
Do not contact admin unless you have technical support or account questions. Do not send email or Private Messages about discussion topics to ADMIN. Contact the webmaster concerning abusive or offensive posts.
admin
Posts: 8720
Joined: Sun Jan 12, 2003 11:26 pm

datastage question

Post by admin »

Doris

JOBNO is defined as a string. So:

SELECT * FROM DS_JOBS WHERE JOBNO = '118';

Kim.

-----Original Message-----
From: Kim Duke [mailto:Kim_G_Duke@Yahoo.com]
Sent: Monday, December 01, 2003 1:28 PM
To: datastage-users@oliver.com
Subject: RE: datastage question

Doris

At TCL you can do it the Universe way or in SQL.

LIST DS_JOBS WITH JOBNO = "118"

Or SQL:

SELECT * FROM DS_JOBS WHERE JOBNO = 118;

Kim.


-----Original Message-----
From: Doris Zammit [mailto:Doris.Zammit@oit.state.nj.us]
Sent: Monday, December 01, 2003 12:04 PM
To: datastage-users@oliver.com
Subject: datastage question

hello everyone,
is there a command available so we can determine what job a particular
log file is associated with? i.e.
RT_LOG118 ..
any help appreciated..
Doris
<b>PLEASE READ</b>
Do not contact admin unless you have technical support or account questions. Do not send email or Private Messages about discussion topics to ADMIN. Contact the webmaster concerning abusive or offensive posts.
Locked