Wednesday, May 26, 2021

Reindex all table in Sql Database



 declare @tableName nvarchar(255)


declare myCursor CURSOR FOR

select TABLE_SCHEMA+'.'+TABLE_NAME

from INFORMATION_SCHEMA.TABLES

where TABLE_TYPE = 'base table'

open myCursor

Fetch next from myCursor into @tableName

While @@FETCH_STATUS = 0

Begin

print 'Working on: '+@tableName

DBCC DBREINDEX(@TableName,' ',90)

Fetch next from myCursor into @tableName

end

close myCursor

Deallocate myCursor

Reindex all table in Sql Database

 declare @tableName nvarchar(255) declare myCursor CURSOR FOR select TABLE_SCHEMA+'.'+TABLE_NAME from INFORMATION_SCHEMA.TABLES wher...