Feb 19, 2003 #1 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?
Feb 19, 2003 #2 dodge20 MIS Jan 15, 2003 1,048 US 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. Upvote 0 Downvote
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.
Feb 19, 2003 #3 olded Programmer Oct 27, 1998 1,065 US Another way: select tabname from systables where tabid > 99 and tabtype = "T" Upvote 0 Downvote