This shows you how to change a column
CREATE TABLE doc_exa ( column_a INT)
GO
ALTER TABLE doc_exa ALTER COLUMN column_a NVARCHAR(20) NOT NULL
GO
EXEC sp_help doc_exa
GO
DROP TABLE doc_exa
GO
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.