DB2
db2 "select tabschema from syscat.tables where tabname = 'SVERS'"
Oracle
SELECT username from dba_users where default_tablespace
not in (
'SYSTEM'
,
'SYSAUX'
);
Imagination is Innovation
db2 "select tabschema from syscat.tables where tabname = 'SVERS'"
SELECT username from dba_users where default_tablespace
not in (
'SYSTEM'
,
'SYSAUX'
);
You must be logged in to post a comment.