↧
SQL Server Misconception – VARCHAR(MAX) Cannot Store More Than 8000 Characters
This post deals with one of the SQL Server Misconception – VARCHAR(MAX) Cannot Store More Than 8000 Characters. Lets analyse this first Take the below query. DECLARE @String VARCHAR(MAX) DECLARE @i INT...
View ArticleSQL Server Misconception – NVARCHAR(MAX) Cannot Store More Than 4000 Characters
In this post Lets discuss about the SQL Server Misconception – NVARCHAR(MAX) Cannot Store More Than 4000 Characters. Lets analyse this first Take the below query. DECLARE @String NVARCHAR(MAX) DECLARE...
View Article