Viewing post 1 (of 2 total)
why not just do the following?
DECLARE @AR TABLE
(
ROW int NULL,
COL int NULL,
VALUE varchar(2000) NULL
)
-- add some dummy data
INSERT @AR (ROW, COL, VALUE) SELECT 5,7,'DATA IN...
November 4, 2008 at 12:59 pm
#893841