DB Reindex all Databases

  • Comments posted to this topic are about the item DB Reindex all Databases

  • I would suggest two changes where you declare the cursor:

    declare db cursor for

    select name from master.dbo.sysdatabases

    where name not in ('master','tempdb')

    and charindex('-',name) = 0

    and version 0

    Checking the version prevents trying to reindex an offline database, the charindex prevents processing of databases that contain a dash in their name: the code would otherwise fail. This is for SQL Server 2000, I'm not sure if it would be implemented the same way in later versions.

    -----
    [font="Arial"]Knowledge is of two kinds. We know a subject ourselves or we know where we can find information upon it. --Samuel Johnson[/font]

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply