nathanharcup
MIS
Hi All,
I am attempting to replace a statment in a varchar 2048 feild, I am using the below statment;
SELECT REPLACE (NOTETEXT,'internalID="CUSTOMER_NAME" attributeID="CUSTOMER_NAME" attributeType="String" attributeName="Client Name"', 'internalID="Name" attributeID="Name" attributeType="String" attributeName=""')
FROM CFG
WHERE NOTETEXT LIKE '%ALL change requests%'
The output in Query Analyzer shows it was succesfull, however when I run;
SELECT * FROM CFG
WHERE NOTETEXT LIKE '%ALL change requests%'
I find that it has not really changed the data.
Can anyone help?
Thanks
Nathan
I am attempting to replace a statment in a varchar 2048 feild, I am using the below statment;
SELECT REPLACE (NOTETEXT,'internalID="CUSTOMER_NAME" attributeID="CUSTOMER_NAME" attributeType="String" attributeName="Client Name"', 'internalID="Name" attributeID="Name" attributeType="String" attributeName=""')
FROM CFG
WHERE NOTETEXT LIKE '%ALL change requests%'
The output in Query Analyzer shows it was succesfull, however when I run;
SELECT * FROM CFG
WHERE NOTETEXT LIKE '%ALL change requests%'
I find that it has not really changed the data.
Can anyone help?
Thanks
Nathan