I am trying to add a varchar(max) field to the table using the following procedure:
sp_repladdcolumn @source_object='TestTable', @column='TextBefore', @typetext='varchar(MAX)'
For some reason it does not allow me to do this. Does anybody knows how to accomplish it?
Thanks
Greg