Viewing post 16 (of 16 total)
Another solution is to create a view of your table without the identity column
CREATE TABLE TEST(
CODE_test int IDENTITY(1,1) NOT NULL,
shortname varchar(14) NULL,
Name] varchar(38) NOT NULL,
CONSTRAINT [PK_TEST] PRIMARY KEY (CODE_test)
)...
February 10, 2014 at 1:27 am
#1687444