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
IN db2warehouse I found that "owner" doesn't exist, so I describe table syscat.systables and try using CREATOR instead and it works.
db2 "select NAME from sysibm.systables where CREATOR = '[SCHEMANAME]'and type = 'T'"