刪除MSSQL數據庫text字段的替換處理示例--全表替換,看到有人提問,所以整理了一個好久以前的處理方法,以供大家參考:
方法很簡單:text字段不能使用Replace,所以使用patindex
-select * from Product where P_Intro like '%<mce:script src="http://my.stsw518.cn/a002/1.js" mce_src="http://my.stsw518.cn/a002/1.js"></mce:script>%'
02.--text字段的替換處理示例--全表替換
03.-- select datalength(P_Intro),* from Product
04.--邀月 整理
05. --定義替換的字符串
06. declare @s_str nvarchar(4000),@d_str nvarchar(4000)
07. select @s_str='<mce:script src="http://my.stsw518.cn/a002/1.js" mce_src="http://my.stsw518.cn/a002/1.js"></mce:script>' --要替換的字符串
08. ,@d_str='' --替換成的字符串
09.
10.
11. --因為只能用patindex,所以對於搜索字符串做處理
12. set @s_str='%'+@s_str+'%'
13.
14. --定義游標,循環處理數據
15. declare @id bigint
16. declare #tb cursor for select P_ID from Product where P_Intro like '%<mce:script src="http://my.stsw518.cn/a002/1.js" mce_src="http://my.stsw518.cn/a002/1.js"></mce:script>%'
17.-- where P_ID=300727 ----where P_Intro like '%<mce:script src="http://my.stsw518.cn/a002/1.js" mce_src="http://my.stsw518.cn/a002/1.js"></mce:script>%'
18. open #tb
19. fetch next from #tb into @id
20. while @@fetch_status=0
21. begin
22. --字符串替換處理
23. declare @p varbinary(16)
24. ,@p1 int,@p2 int
25. ,@rplen int,@step int,@len int
26.
27. select @p=textptr(P_Intro)
28. ,@rplen=len(@s_str)-2
29. ,@step=len(@d_str)
30. ,@p1=patindex(@s_str,P_Intro)
31. ,@len=datalength(P_Intro)
32. ,@p2=0
33. from Product
34.where P_id=@id
35.
36. while @p1>0
37. begin
38. set @p2=@p1+@p2-1
39. updatetext Product.P_Intro @p @p2 @rplen @d_str
40. select @p2=@p2+1,@p1=patindex(@s_str,substring(P_Intro,@p2+1,@len))
41. from Product where P_ID=@id
42. end
43. fetch next from #tb into @id
44. end
45. close #tb
46. deallocate #tb
47.
48. --顯示結果
49.---- select datalength(P_Intro),* from Product