How does DataStage store Annotations?

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

How does DataStage store Annotations?

Post by zulfi123786 »

Hi,

How and where does DataStage store Annotations and data regarding the "Performance Statistics" ?

When i store the Column definitions in the repository how does DS store them???
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

The performance information is not stored with the job, it is retrieved at display time from the logs. The annotations are stored in the repository as distinct entities in the DS_JOBOBJECTS.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

"Performance" data are stored in the RT_STATUSnnn hashed file for the job.
Annotations are stored in DS_JOBOBJECTS and have repository IDs of the form VnAm (where n and m are integers).
Column definitions imported as table definitions or saved from jobs are stored in DS_METADATA hashed file. Column definitions loaded into jobs are stored in link records in DS_JOBOBJECTS.

This answer pertains only to version 7.5.3 and earlier.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

In which guide of DATASTAGE is DS_JOBOBJECTS discussed???
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

This hashed file is internal to DataStage and is not documented anywhere.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

None of the 'internals' like that are documented. How about you give us some idea what you are after or are trying to achieve?
-craig

"You can never have too many knives" -- Logan Nine Fingers
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

I am trying to learn..... got across this DS_OBJECTS but did not find any documentation related to that.......
checking if someone here has got reference to any documentation regarding the same.
chvenkat.v
Participant
Posts: 94
Joined: Fri Dec 14, 2007 3:22 am

Post by chvenkat.v »

Hi,


I am also trying to learning about DataStage Commands like UVSH, TST_GGS, LOGTO,..etc. And also unable to find documentation for the DataStage Job tables like DS_JOBS, DS_OBJECTS,.. etc. Didn't find any documentation related to this in DS Ver 7.5 & 8.0.1

So, Please help me, where can i find reference documentation's for the same.

Thanks
venkat!
chvenkat.v
Participant
Posts: 94
Joined: Fri Dec 14, 2007 3:22 am

Post by chvenkat.v »

Hi,


I am also trying to learning about DataStage Commands like UVSH, TST_GGS, LOGTO,..etc. And also unable to find documentation for the DataStage Job tables like DS_JOBS, DS_OBJECTS,.. etc. Didn't find any documentation related to this in DS Ver 7.5 & 8.0.1

So, Please help me, where can i find reference documentation's for the same.

Thanks
venkat!
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

I am trying to learn..... got across this DS_OBJECTS but did not find any documentation related to that.......
checking if someone here has got reference to any documentation regarding the same.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

There IS NO documentation.

A Search will reveal the reasons.

Essentially, though, IBM regard the "internals" as their intellectual property.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

Is there any possibility to know column names this DS_OBJECTS UV table contains using a query in DataStage Administrator???
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

I am familiar with IBM DB2 database and found that the functions in DB2 doesn't work UV tables.... where can i find functions which work with UV tables???
For example: In DB2 to get only first 2 rows "fetch first 2 rows only" is used ... so what is the equivalent in UV? and to know the columns in DB2 "describe tabel <table name> is used .... what is the equivalent in UV???
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Code: Select all

SELECT column_list FROM tablename FIRST 2;

Code: Select all

LIST.DICT tablename
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
zulfi123786
Premium Member
Premium Member
Posts: 730
Joined: Tue Nov 04, 2008 10:14 am
Location: Bangalore

Post by zulfi123786 »

Thanks for the info!!!!!!!!! :D
where can i find information on how to work with universe queries????
Post Reply