I am researching varchar(max) data type in sql server and I try to compare with text and varchar(8000) datatype. I read several articles about this. As specified in some articles, we cannot update text column using regular DML statements and instead we need to use updateText, readText, writeText. I tried this in sql server 2008 and I can update text column using reqular DML statements.I wonder, was the situation that specified in articles correct for previous versions of Sql Server? And how does sql server store varchar(max) data if exceeds 8 kb?
Asked
Active
Viewed 602 times
2
-
We can update text column with regular dml commands, the articles you read would have incorrect information. – Neeraj Kumar Yadav Feb 21 '15 at 15:28