Hi All, I am trying to find if any table that belong to SCHEMA SUNNY and doesnt not have update and insert grants for testuser using sql..
select tabname from syscat.tables where tabschema = 'SUNNY' and type = 'T'
select tabname from syscat.tabauth where grantee = 'TESTUSER' AND INSERTAUTH = 'N' AND UPDATEAUTH = 'N'
how can I join these two ???
thanks in advance..
SUNNY