in reply to
Re^3: Appending text to a column in SQL
in thread
Appending text to a column in SQL
CREATE PROCEDURE dbo.APPEND_THINGY @id int, @new_text varchar(8000) AS Update table SET field = cast(field as varchar(max)) + @new_text where id = @id GO
Comment on
Re^4: Appending text to a column in SQL
In Section
Seekers of Perl Wisdom