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 > describe table

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-23-06, 12:49
amanriquem amanriquem is offline
Registered User
 
Join Date: Apr 2004
Location: Lima-Peru
Posts: 7
describe table

Hi, is there a sentence in db2 as400 that shows a table structure like "desc <table>" in Oracle?

thanks in advance.
Reply With Quote
  #2 (permalink)  
Old 09-24-06, 03:03
przytula_guy przytula_guy is offline
Registered User
 
Join Date: Apr 2006
Location: Belgium
Posts: 1,159
desc

I don't know for as/400 interface, but when using any client and being connected to the as/400 db you can execute : db2 describe table xx.yyy
__________________
Best Regards, Guy Przytula
Database Software Consultant
DB2 UDB LUW Certified V7-V8-V9-V9.7 DB Admin - Dprop..
Information Server Datastage Certified
http://www.infocura.be
Reply With Quote
  #3 (permalink)  
Old 09-25-06, 03:51
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,279
You can get the full DDL's to recreate an (empty) clone of a database with
db2look. It return the create table, create view, FK's, PK's, constraints, ... scripts.
__________________
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
  #4 (permalink)  
Old 09-25-06, 19:48
jinsezh jinsezh is offline
Registered User
 
Join Date: Aug 2006
Posts: 33
In command editor, you can use "Describe select * from table"

Or if you just want to know the column name, you can use
"select * from table where 1=2", that will just return the column names.
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