|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
MySQL最初的开发者的意图是用mSQL和他们自己的快速低级例程(ISAM)去连接表格。经过一些测试后,开发者得出结论:mSQL并没有他们需要的那么快和灵活。
--减少SQL日记
--execp_compdbtest
createprocp_compdb
@dbnamesysname,--要紧缩的数据库名
@bkdatabasebit=1,--由于分别日记的步骤中,大概会破坏数据库,以是你能够选择是不是主动数据库
@bkfnamenvarchar(260)=--备份的文件名,假如不指定,主动备份到默许备份目次,备份文件名为:数据库名+日期工夫
as
--1.清空日记
exec(DUMPTRANSACTION[+@dbname+]WITHNO_LOG)
--2.截断事件日记:
exec(BACKUPLOG[+@dbname+]WITHNO_LOG)
--3.压缩数据库文件(假如不紧缩,数据库的文件不会减小
exec(DBCCSHRINKDATABASE([+@dbname+]))
--4.设置主动压缩
exec(EXECsp_dboption+@dbname+,autoshrink,TRUE)
--前面的步骤有必定伤害,你能够能够选择是不是应当这些步骤
--5.分别数据库
if@bkdatabase=1
begin
ifisnull(@bkfname,)=
set@bkfname=@dbname+_+convert(varchar,getdate(),112)
+replace(convert(varchar,getdate(),108),:,)
select提醒信息=备份数据库到SQL默许备份目次,备份文件名:+@bkfname
exec(backupdatabase[+@dbname+]todisk=+@bkfname+)
end
--举行分别处置
createtable#t(fnamenvarchar(260),typeint)
exec(insertinto#tselectfilename,type=status&0x40from[+@dbname+]..sysfiles)
exec(sp_detach_db+@dbname+)
--删除日记文件
declare@fnamenvarchar(260),@svarchar(8000)
declaretbcursorlocalforselectfnamefrom#twheretype=64
opentb
fetchnextfromtbinto@fname
while@@fetch_status=0
begin
set@s=del"+rtrim(@fname)+"
execmaster..xp_cmdshell@s,no_output
fetchnextfromtbinto@fname
end
closetb
deallocatetb
--附加数据库
set@s=
declaretbcursorlocalforselectfnamefrom#twheretype=0
opentb
fetchnextfromtbinto@fname
while@@fetch_status=0
begin
set@s=@s+,+rtrim(@fname)+
fetchnextfromtbinto@fname
end
closetb
deallocatetb
exec(sp_attach_single_file_db+@dbname++@s)
GO
MyISAMMysql的默认数据库,最为常用。拥有较高的插入,查询速度,但不支持事务 |
|