How to query tables in a particular schema with less than 100 rows?
First do a runstats on your whole schema. Then:
select tabname from syscat.tables where card < 100 and tabschema = 'theschema'
1.4m articles
1.4m replys
5 comments
57.0k users