Back up and restore in sql server 2000

  • HI,

    I have a back up of a named instance1.how do i restore that backup to the named instance 2 in sql server 2000?

    Thanks for ur help

  • You have a database backup? Whether it's from a named instance doesn't matter. In instance 2, use

    RESTORE DATABASE mydatabase

    FROM DISK = 'filepath'

    WITH RECOVERY

    You'd use variations of this depending on whether you have additional differential and/or log backups. See 'RESTORE' in BOL for examples.

    Greg

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

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