Cloud & SQLSailor

Cloud, Databases & Beyond!

Find all tables which doesnt have a primary key column


Today I wanted to pull this info to work on a replication strategy and the below code shows how to do that in a matter of seconds

-- Find all tables that don't have a Primary Key
select nameFROM SysObjects WHERE xtype='U'AND id NOTIN (SELECT parent_obj FROM SysObjects WHERE xtype='PK')

Leave a comment