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')
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s