Feb 19, 2003 #1 jadoherty IS-IT--Management Joined Feb 19, 2003 Messages 1 Location US What command syntax can I use to query all the table names available in my Informix database?
Feb 19, 2003 #2 dodge20 MIS Joined Jan 15, 2003 Messages 1,048 Location 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 Joined Oct 27, 1998 Messages 1,065 Location US Another way: select tabname from systables where tabid > 99 and tabtype = "T" Upvote 0 Downvote