I\'m just looking for a simple query to select all the table names for a given schema.
For example, our DB has over 100 tables and I need to find any table that cont
db2 connect to MY_INSTACE_DB with myuser -- connect to db2 db2 "select TABNAME from syscat.tables where tabschema = 'mySchema' with ur" db2 terminate -- end connection