Viewing 2 posts - 1 through 2 (of 2 total)
GilaMonster (1/23/2016)
hlrx (1/22/2016)For example, this compiles and runs fine in one batch:[font="Courier New"]CREATE TABLE test1 (col1 INT NOT NULL)ALTER TABLE test1 ALTER COLUMN col1 INT NULLINSERT test1 VALUES (NULL)GO[/font]
hlrx (1/22/2016)
[font="Courier New"]CREATE TABLE test1 (col1 INT NOT NULL)
ALTER TABLE test1 ALTER COLUMN col1 INT NULL
INSERT test1 VALUES (NULL)
GO[/font]
Yes it...
January 25, 2016 at 8:32 am
#1854184
Hugo Kornelis (1/22/2016)
January 22, 2016 at 4:00 pm
#1853937