|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
刚安装好的MySql包含一个含空密码的root帐户和一个匿名帐户,这是很大的安全隐患,对于一些重要的应用我们应将安全性尽可能提高,在这里应把匿名帐户删除、root帐户设置密码字符串
ifexists(select*fromdbo.sysobjectswhereid=object_id(N[dbo].[f_updatestr])andxtypein(NFN,NIF,NTF))dropfunction[dbo].[f_updatestr]GO
/*--更新字符串列表中,指定地位的字符串
更新字符串列表中,指定地位的字符串为新的值假如地位超越局限,则不做更新
--邹建2004.07--*/
/*--挪用示例
selectdbo.f_updatestr(001|002|003|,1,00a,|)--*/createfunctionf_updatestr(@svarchar(8000),@posint,@newstrvarchar(100),@spliststrvarchar(10)--字符串列表的分开符)returnsvarchar(8000)asbegindeclare@iint,@ilenint
select@i=charindex(@spliststr,@spliststr+@s),@ilen=len(@spliststr)while@i>0and@pos>1select@i=charindex(@spliststr,@s,@i)+@ilen,@pos=@pos-1return(case@iwhen0then@selsestuff(@s,@i,charindex(@spliststr,@s+@spliststr,@i)-@i,@newstr)end)endgo
我们只需要把binlog文件反向执行,每个操作都执行逆操作即可。当然也不是所有的event都反转。Table_mapevent必须还是在Rows_log_event每个操作之前。 |
|