I need DB2 equivalent of this query . Any help is appreciated. I found few links but its confusing which table to query for db2.
select table_name
from all_catalog
where TABLE_TYPE = 'CATALOG'
I need DB2 equivalent of this query . Any help is appreciated. I found few links but its confusing which table to query for db2.
select table_name
from all_catalog
where TABLE_TYPE = 'CATALOG'
Db2 offers an Oracle compatibility mode. You can switch on views similar to the Oracle data dictionary. It includes ALL_CATALOG, but I don't have personal experience with it.