如:create table test(id int identity(1,1),content text)
insert test values('asdfsdfasdfsadfsdjflk大力sdjflkasjdf;lasdjf;lafsd')
insert test values('fdsgdsfgdfgsdfghrtjtyjkhkhjkhjljk大力ljk;jk;kl;kl;kl;')
gocreate proc 替换
@s_str varchar(100),
@d_str varchar(100)
as
declare @id int
declare #tb cursor for select id from test
open #tb
fetch next from #tb into @id
while @@fetch_status=0
begin
  declare @p varbinary(16),@postion int,@rplen int
  select @p=textptr(CONTENT),@rplen=len(@s_str),@postion=charindex(@s_str,CONTENT)-1 from test where id=@id
  while @postion>0
    begin
      updatetext test.CONTENT @p @postion @rplen @d_str
        select @postion=charindex(@s_str,content)-1 from test where id=@id
    end
  fetch next from #tb into @id
end
close #tb
deallocate #tb
goexec 替换 '大力','AAAAA'goselect * from testgo
drop table test

解决方案 »

  1.   

    /************************  Text字段替换  ******************/
    http://expert.csdn.net/Expert/topic/2340/2340463.xml?temp=.2318231
    SQL中可以用类似下面的方法处理:--text处理示例:create table hello(id int identity(1,1),CONTENT text)
    insert into hello
    select '<IMG align=baseline alt="" border=0 src="http://localhost/upimg/0335_p1.jpg"><BR>'
    union all select '<IMG align=baseline alt="" border=0 src="http://localhost/upimg/0335_p1.jpg"><BR>'--定义替换/删除的字符串
    declare @s_str varchar(8000),@d_str varchar(8000)
    select @s_str='http://localhost/' --要替换的字符串
    ,@d_str='' --替换成的字符串--定义游标,循环处理数据
    declare @id int
    declare #tb cursor for select id from hello
    open #tb
    fetch next from #tb into @id
    while @@fetch_status=0
    begin
    --字符串替换处理
    declare @p varbinary(16),@postion int,@rplen int
    select @p=textptr(CONTENT),@rplen=len(@s_str),@postion=charindex(@s_str,CONTENT)-1 from hello where id=@id
    while @postion>0
    begin
    updatetext hello.CONTENT @p @postion @rplen @d_str
    select @postion=charindex(@s_str,CONTENT)-1 from hello where id=@id
    end fetch next from #tb into @id
    end
    close #tb
    deallocate #tb--显示结果
    select * from hello--删除数据测试环境
    drop table hello
      

  2.   

    --参考下面的例子:create table hello(id int identity(1,1),CONTENT text)
    insert into hello
    select '<IMG align=baseline alt="" border=0 src="http://localhost/upimg/0335_p1.jpg"><BR>'
    union all select '<IMG align=baseline alt="" border=0 src="http://localhost/upimg/0335_p1.jpg"><BR>'--定义替换/删除的字符串
    declare @s_str varchar(8000),@d_str varchar(8000)
    select @s_str='http://localhost/' --要替换的字符串
    ,@d_str='' --替换成的字符串--定义游标,循环处理数据
    declare @id int
    declare #tb cursor for select id from hello
    open #tb
    fetch next from #tb into @id
    while @@fetch_status=0
    begin
    --字符串替换处理
    declare @p varbinary(16),@postion int,@rplen int
    select @p=textptr(CONTENT),@rplen=len(@s_str),@postion=charindex(@s_str,CONTENT)-1 from hello where id=@id
    while @postion>0
    begin
    updatetext hello.CONTENT @p @postion @rplen @d_str
    select @postion=charindex(@s_str,CONTENT)-1 from hello where id=@id
    end fetch next from #tb into @id
    end
    close #tb
    deallocate #tb--显示结果
    select * from hello--删除数据测试环境
    drop table hello