Options
Identify tables without primary key
How to identify list of tables with doesnt have PK in its DDL ?
0
How to identify list of tables with doesnt have PK in its DDL ?
Comments
Did you check
select * from v_catalog.tables t where t.table_name not in
(
select table_name from v_catalog.primary_keys
)
?