Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Command to list all table names

Status
Not open for further replies.

jadoherty

IS-IT--Management
Feb 19, 2003
1
US
What command syntax can I use to query all the table names available in my Informix database?
 
A very simple sql statement will list all of the tables along with the owner in a database. This is it

INFO TABLES

Dodge20
If it ain't broke, don't fix it.
 
Another way:

select tabname from systables where tabid > 99 and tabtype = "T"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top