If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > DB2 > How to retrieve information about the database objects

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-04-06, 01:43
Shefu Shefu is offline
Registered User
 
Join Date: Apr 2005
Posts: 127
Question How to retrieve information about the database objects

hi,

In SQL Server we ve some system tables which have some information about the database,

1. sysobjects : which stores the information regarding the database objects like table, procedure , etc...

it has information like the name of the object, type (procedure or table or trigger ...), specific id for the object.

2. systypes : it has information about the data types like, the name of the datatype, the space it occupies, physical storage type, etc..


I want to retrieve similar information from DB2, Kindly guide me to find the equivalent information in DB2,.

Regards,
Sn
Reply With Quote
  #2 (permalink)  
Old 01-04-06, 04:06
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,279
Look for tables with schema name SYSIBM, SYSCAT, ...
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #3 (permalink)  
Old 01-04-06, 04:15
juliane26 juliane26 is offline
Registered User
 
Join Date: Oct 2005
Posts: 109
1): you are probably referring to the system catalog:

on LUW: all the SYSCAT.* views
http://publib.boulder.ibm.com/infoce...n/r0008443.htm

on z/OS: all the SYSIBM.SYS% Tables.
http://publib.boulder.ibm.com/infoce...jnrmstr523.htm

They are all very well documented.

2) data types:
may be that is useful for you ?
http://publib.boulder.ibm.com/infoce...n/r0008483.htm
http://publib.boulder.ibm.com/infoce...n/c0004924.htm
http://publib.boulder.ibm.com/infoce...n/c0004926.htm
__________________
Juliane
Reply With Quote
  #4 (permalink)  
Old 01-04-06, 05:55
Shefu Shefu is offline
Registered User
 
Join Date: Apr 2005
Posts: 127
THanks for the links and the suggestions. I ll try to use them.

Regards
Sn
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On