明輝手游網(wǎng)中心:是一個免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

SQL Server 索引重建 數(shù)據(jù)庫優(yōu)化加快查詢的速度

[摘要]軟件等級:更新時間:2016-11-11版本號:v5.7.10 MySQL Server x64官方正式版免費(fèi)下載立即下載 SQL Server 索引重建 數(shù)據(jù)庫優(yōu)化加快查詢的速度大家知道在數(shù)據(jù)庫中建立和索引的話可以大大加快查詢的速度,但是隨著插入刪除操作索引的密度會下降,這是查詢的速...
MySQL Server x64官方正式版免費(fèi)下載

軟件等級:

更新時間:2016-11-11

版本號:v5.7.10

MySQL Server x64官方正式版免費(fèi)下載

 

SQL Server 索引重建 數(shù)據(jù)庫優(yōu)化加快查詢的速度

大家知道在數(shù)據(jù)庫中建立和索引的話可以大大加快查詢的速度,但是隨著插入刪除操作索引的密度會下降,這是查詢的速度會大大降低,怎么辦,通過索引重建可以提高索引密度,下面是索引重建的代碼,

set nocount on
declare @str varchar(500)
create table #tmpTable(TableName varchar(50),rows int,reserved varchar(50),data varchar(50),index_size varchar(50),unused varchar(50))
declare @table as varchar(50)
if not exists(select 0 from sysobjects where name='Reindex_Log')
 CREATE table Reindex_Log(DB varchar(20),RowsLimit int,Tablename varchar(50),TransDatetime datetime)
declare TblCur  cursor for
select '['+name+']' from sysobjects where xtype='u'
open TblCur
fetch next from tblcur into @table
while @@fetch_status=0
begin
 insert into #tmptable exec sp_spaceused @table
 fetch next from tblcur into @table
end

close TblCur

 


常見的網(wǎng)絡(luò)操作系統(tǒng)有UNIX、Netware、Windows NT、Linux等,網(wǎng)絡(luò)軟件的漏洞及缺陷被利用,使網(wǎng)絡(luò)遭到入侵和破壞。