Mega Code Archive

 
Categories / MSSQL Tutorial / Data Types
 

Truncates the string at the 28th position

6> IF OBJECT_ID('dbo.CustomerData') IS NOT NULL 7>   DROP TABLE dbo.CustomerData; 8> GO 1> 2> CREATE TABLE dbo.CustomerData 3> ( 4>   custid      INT            NOT NULL PRIMARY KEY, 5>   txt_data    VARCHAR(MAX)   NULL, 6>   ntxt_data   NVARCHAR(MAX)  NULL, 7>   binary_data VARBINARY(MAX) NULL 8> ); 9> GO 1> UPDATE dbo.CustomerData 2>   SET txt_data.WRITE(NULL, 28, 0) 3> WHERE custid = 102; 4> GO 1> 2> drop table CustomerData; 3> GO