SQL Script to Add Identity Column
Supposing you have 50 tables without identity column, adding identity manually in the table designer would take you so much time. Here's a script to automatically add identity to a column. List all tables without identity column. SELECT (SCHEMA_NAME(schema_id) + '.' + name) as SchemaTable FROM...