I need to replace all iframe tags stored as nvarchar in my database. I can find the entries using the following sql question:
SELECT * FROM databasename..VersionedFields WHERE Value LIKE '%<iframe%'
Let's say I want to replace the following code segment:
code before iframe <iframe src="yadayada"> </iframe> code after iframe
Wherein:
code before iframe <a>iframe src="yadayada"</a> code after iframe
sql sql-server tsql
Zooking Mar 03 '09 at 9:45 2009-03-03 09:45
source share