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 get table's field description for DB2

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-07-11, 11:19
cy163 cy163 is offline
Registered User
 
Join Date: Apr 2007
Posts: 127
How to get table's field description for DB2

Hello ALL,


I wonder what command can be used to get the description of fields of a table,i.e., info about data type, length of ALL fields in a table.


Thanks
Reply With Quote
  #2 (permalink)  
Old 04-07-11, 11:47
n_i n_i is offline
:-)
 
Join Date: Jun 2003
Location: Toronto, Canada
Posts: 4,449
Code:
describe table myschema.mytable
or
Code:
select colname, typename, length, scale from syscat.columns 
where tabschema = 'MYSCHEMA' and tabname = 'MYTABLE'
Reply With Quote
  #3 (permalink)  
Old 04-07-11, 11:47
ARWinner ARWinner is offline
Registered User
 
Join Date: Jan 2003
Posts: 3,575
You can use either DESCRIBE, db2look, or query the syscat tables.

Andy
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