I receive this error message when trying to update (remove comma's in the data):
Server: Msg 8116, Level 16, State 1, Line 1
Argument data type text is invalid for argument 1 of replace function.
I noticed that the data type for this column is T_MEMO
and I can't find anything regarding this data type.
Here is my statement:
UPDATE address
SET address.street_address = (REPLACE(address.street_address,',',' '))
Any thoughts/comments?
Thanks,
TechRick
Server: Msg 8116, Level 16, State 1, Line 1
Argument data type text is invalid for argument 1 of replace function.
I noticed that the data type for this column is T_MEMO
and I can't find anything regarding this data type.
Here is my statement:
UPDATE address
SET address.street_address = (REPLACE(address.street_address,',',' '))
Any thoughts/comments?
Thanks,
TechRick