UnknownProgrammer
Programmer
I am attempting to do a search & replace where every occurence of " (double quote) is replaced by ' (a single quote).
I am using the code ...
update Table set Column = replace(Column,'"','''')
I am running a query to get the length of "Column" in every record both before & after the replace happens in order to reconcile the before & after for the auditors.
They never match!
What am I doing wrong?
How can I do this?
Thanks for the help.
I am using the code ...
update Table set Column = replace(Column,'"','''')
I am running a query to get the length of "Column" in every record both before & after the replace happens in order to reconcile the before & after for the auditors.
They never match!
What am I doing wrong?
How can I do this?
Thanks for the help.