Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My Query is given below..
SQL
BACKUP DATABASE gsm
TO DISK = 'E\Backups\AdventureWorks.BAK'

and
Error Message:
Cannot open backup device 'c:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\E\Backups\AdventureWorks.BAK'. Operating system error 3(The system cannot find the path specified.).

is there any solution?
Posted
Updated 18-Feb-12 0:45am
v2

1 solution

Dear Friend,

This error means that SQL Server just can't get access to specified device.So after giving proper privileges to Folder

Please refer to this link also:- http://blog.sqlauthority.com/2011/12/17/sql-server-fix-error-msg-3201-level-16-cannot-open-backup-device-operating-system-error-3-the-system-cannot-find-the-path-specified/[^]

Please try this:-

BACKUP DATABASE gsm
TO DISK = 'E:\Backups\AdventureWorks.BAK'


**If E:\ Drive exists then only

Thanks
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900