Hi,
I'm trying to do a one off backup my db, thusly:
where E:\ is an external drive. (The space on C:\ is limited, and there is no partition.)
The backup fails with the following:
Server: Msg 3202, Level 16, State 1, Line 1
Write on 'E:\Reseller2' failed, status = 112. See the SQL Server error log for more details.
Server: Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally.
The error log just states:
- BackupMedium::ReportIoError: write failure on backup device 'E:\Reseller2'. Operating system error 112(error not found).
- BACKUP failed to complete the command BACKUP DATABASE Reseller2
combined with an Internal I/O request, that I can't make head nor tail of.
Can anyone give me some pointers on successful backup completion here?
I'm trying to do a one off backup my db, thusly:
Code:
USE Reseller2
GO
BACKUP DATABASE Reseller2
TO DISK = 'E:\Reseller2'
WITH FORMAT,
NAME = 'ResellerBackup20060721'
GO
The backup fails with the following:
Server: Msg 3202, Level 16, State 1, Line 1
Write on 'E:\Reseller2' failed, status = 112. See the SQL Server error log for more details.
Server: Msg 3013, Level 16, State 1, Line 1
BACKUP DATABASE is terminating abnormally.
The error log just states:
- BackupMedium::ReportIoError: write failure on backup device 'E:\Reseller2'. Operating system error 112(error not found).
- BACKUP failed to complete the command BACKUP DATABASE Reseller2
combined with an Internal I/O request, that I can't make head nor tail of.
Can anyone give me some pointers on successful backup completion here?