question on data manipulation

2004-05-21 Thread g . lams
Hi All I've xml contents in a column of one table. Inside that xml content, I've sometime an hardcoded link which I needs to change automatically (lets say: from host.domain.com/dev to host2.domain.com) I'm searching how to build the sql statement to do it but I don't understand how to do

RE: question on data manipulation

2004-05-21 Thread Victor Pendleton
One option: UPDATE table_name SET col_name = REPLACE(col_name, 'host.domain.com', 'host2.domain.com') WHERE some_restriction -Original Message- From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: 5/21/04 9:23 AM Subject: question on data manipulation Hi All I've xml contents

Re: question on data manipulation

2004-05-21 Thread Jigal van Hemert
I've xml contents in a column of one table. Inside that xml content, I've sometime an hardcoded link which I needs to change automatically (lets say: from host.domain.com/dev to host2.domain.com) I'm searching how to build the sql statement to do it but I don't understand how to do this

RE: question on data manipulation

2004-05-21 Thread g . lams
PROTECTED] To: [EMAIL PROTECTED] Sent: 5/21/04 9:23 AM Subject: question on data manipulation Hi All I've xml contents in a column of one table. Inside that xml content, I've sometime an hardcoded link which I needs to change automatically (lets say: from host.domain.com/dev