change the physical database name

  • Can you change the physical database name in SQL Server 2000?

  • Yes, you can do it with stored procedure:

    sp_renamedb [ @dbname = ] 'old_name' ,

        [ @newname = ] 'new_name'

    or in Enterprise Manager.

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

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