问题
How to query tables in a particular schema with less than 100 rows?
回答1:
First do a runstats on your whole schema. Then:
select tabname from syscat.tables where card < 100 and tabschema = 'theschema'
来源:https://stackoverflow.com/questions/5699029/how-to-query-tables-in-a-particular-schema-with-less-than-100-rows