TheBugSlayer
Programmer
I am creating a backup using the Wizard but it fails to run because in 'Select Backup Destination' I am choosing a UNC name.
In QA I tried:
USE master
EXEC sp_addumpdevice 'disk', 'FP_FULL',
'\\sql-archive\sqldata\fp.dat'
BACKUP DATABASE MyDDB FP_FULL
THe device is created successfully however the backup fails with message "Server: Msg 3201, Level 16, State 1, Line 1
Cannot open backup device 'FP_FULL'. Device error or device off-line. See the SQL Server error log for more details.
Server: Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally."
Does anyone have any idea why this happens? Thank you.
In QA I tried:
USE master
EXEC sp_addumpdevice 'disk', 'FP_FULL',
'\\sql-archive\sqldata\fp.dat'
BACKUP DATABASE MyDDB FP_FULL
THe device is created successfully however the backup fails with message "Server: Msg 3201, Level 16, State 1, Line 1
Cannot open backup device 'FP_FULL'. Device error or device off-line. See the SQL Server error log for more details.
Server: Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally."
Does anyone have any idea why this happens? Thank you.