List of uv tables

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
SandhyaShetty21
Premium Member
Premium Member
Posts: 17
Joined: Wed Nov 30, 2011 1:16 am

List of uv tables

Post by SandhyaShetty21 »

Hi Team,

How can I find out the list of tables in uv.

eg. DSJOB, DS_ROUTINES, DS_METADATA
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

The command in TCL is "LISTF" or "LISTFL" (list files or list local files), which is the same same "LIST VOC WITH F1 LIKE F...". Since every job creates a couple of files, this list is rather long.
priyadarshikunal
Premium Member
Premium Member
Posts: 1735
Joined: Thu Mar 01, 2007 5:44 am
Location: Troy, MI

Post by priyadarshikunal »

Or you can select from the VOC.. where TYPE like F and NAME not like RT_%
Priyadarshi Kunal

Genius may have its limitations, but stupidity is not thus handicapped. :wink:
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

May we know why you think you need this list?
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
SandhyaShetty21
Premium Member
Premium Member
Posts: 17
Joined: Wed Nov 30, 2011 1:16 am

Post by SandhyaShetty21 »

Thanks All for the responses.

I am looking for a table which would give me monitor information about the previous runs of a job.

I can see the job monitor for the latest run. But I wanted to compare the latest set of monitor records with the previous runs.

Is there any way I can achieve this?
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

While the xmeta database has that information (somewhere in its undocumented depths), you will not find a UV table/hashed file with just that information. The data you see in the monitor is computed from the entries in each job's logging information - you would need to read the job's log (not difficult), then parse the various bits of data from the log and elsewhere to re-create the monitor information.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

In version 7.x the only table that contains information about previous runs - unless you preserve it in your own tables - is the log for the job, RT_LOGnnn where nnn is the job number.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

SandhyaShetty21 wrote:I am looking for a table which would give me monitor information about the previous runs of a job.
Always best to lead with your actual problem / question. :wink:
-craig

"You can never have too many knives" -- Logan Nine Fingers
Post Reply