Considering the following tables (table_1 with IDENTITY column): IF (object_id('table_1') IS NOT Null) drop table table_1 CREATE TABLE table_1 ( Id bigint IDENTITY(1,1) NOT NULL, Col1 nvarchar(4000) NOT NULL Col2 nvarchar(400… more »

Leave a comment