程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> MSSQL >> 批量更新數據庫一切表中字段的內容,中木馬後的急救處置

批量更新數據庫一切表中字段的內容,中木馬後的急救處置

編輯:MSSQL

批量更新數據庫一切表中字段的內容,中木馬後的急救處置。本站提示廣大學習愛好者:(批量更新數據庫一切表中字段的內容,中木馬後的急救處置)文章只能為提供參考,不一定能成為您想要的結果。以下是批量更新數據庫一切表中字段的內容,中木馬後的急救處置正文



declare @t varchar(255),@c varchar(255)
declare table_cursor cursor for select a.name,b.name
from sysobjects a,syscolumns b ,systypes c
where a.id=b.id and a.xtype='u' and c.name
in ('char', 'nchar', 'nvarchar', 'varchar','text','ntext'/* --這裡假如你的text(ntext)類型沒有跨越8000(4000)長度,才可使用*/)
declare @str varchar(500),@str2 varchar(500)
set @str='a' /*這裡是你要調換的字符*/
set @str2='' /*調換後的字符*/
open table_cursor
fetch next from table_cursor
into @t,@c while(@@fetch_status=0)
begin exec('update [' + @t + '] set [' + @c + ']=replace(cast([' + @c + '] as varchar(8000)),'''+@str+''','''+ @str2 +''')')
fetch next from table_cursor
into @t,@c end close table_cursor deallocate table_cursor;
小於8000的處置
update buyok_Orderlist set Notes=replace(cast(Notes as varchar(8000)),'a','')
假如text/ntext跨越8000/4000,看以下例子<沒有試過>
declare @pos int
declare @len int
declare @str nvarchar(4000)
declare @des nvarchar(4000)
declare @count int
set @des ='<requested_amount+1>'--要調換成的值
set @len=len(@des)
set @str= '<requested_amount>'--要調換的字符
set @count=0--統計次數.
WHILE 1=1
BEGIN
select @pos=patINDEX('%'+@des+'%',propxmldata) - 1
from 表名
where 前提
IF @pos>=0
begin
DECLARE @ptrval binary(16)
SELECT @ptrval = TEXTPTR(字段名)
from 表名
where 前提
UPDATETEXT 表名.字段名 @ptrval @pos @len @str
set @count=@count+1
end
ELSE
break;
END
select @count
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved