Viewing post 1 (of 1 total)
CREATE TABLE MyTextTable
(
myid INT
, mytext varchar(MAX)
);
GO
INSERT dbo.MyTextTable
( myid, mytext )
VALUES
( 1, 'A good coffee bean...
October 27, 2015 at 9:09 pm
#1835918