Results 1 to 4 of 4

Thread: Backup to Virtual_Device

  1. #1
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932

    Backup to Virtual_Device

    Does anyone have any information backup to a virtual_device in SQL 2000?

    We traced the sql lite speed and saw that it uses

    BACKUP DATABASE dbname TO VIRTUAL_DEVICE ...

    which is not documented in BOL. My search in google got me to few forum postings which were about people encountering error with virtual_device using third party backup tools such as ArcServer, Veritas Netbackup and CA BackStor.

  2. #2
    Join Date
    Mar 2003
    Location
    Woking, UK
    Posts
    152
    I believe that VIRTUAL_DEVICE is normal backup device added with sp_addumpdevice
    Check master.dbo.sysdevices for existence...
    select * from master.dbo.sysdevices where name = 'VIRTUAL_DEVICE'
    You Have To Be Happy With What You Have To Be Happy With (KC)

  3. #3
    Join Date
    Nov 2002
    Location
    New Jersey, USA
    Posts
    3,932
    No it's not.

    I should have posted the complete syntax.

    backup database "DB1" to VIRTUAL_DEVICE='VNBU0-580-5592'

    If it was a dump device then syntax would have been

    backup database "DB1" to VIRTUAL_DEVICE

  4. #4
    Join Date
    Mar 2003
    Location
    Woking, UK
    Posts
    152
    You Have To Be Happy With What You Have To Be Happy With (KC)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •