Network drive is not available for database backup in sqlexpress 2008
-
Thursday, August 30, 2012 8:54 PM
Hello --
We are running SQLExpress 2008 on a Windows 7 64-bit system, and I need to do backups of the databases. I have mapped a network drive to a Samba server, and I have tested that it is writeable via a simple create text file within the operating system.
When I go through the motions of setting up the backup job, I notice the network drive is not available as an option even after I restarted the SQLExpress service. Is this by design?
Thanks.
All Replies
-
Thursday, August 30, 2012 11:30 PMModerator
Hello,
You can try a UNC path.
BACKUP DATABASE DatabaseName TO DISK='\\ServerName\DatabaseName.bak'
Hope this helps.
Regards,
Alberto Morillo
SQLCoffee.com -
Friday, August 31, 2012 12:00 PM
- You need to map network drive by CMD, I do not know but SQL is not able to find network map drive created by GUI (net use X: \\ServerName\Folder)
- Provide access(read\write) permissions to SQL server serviec account
But you will face issue after system reboot or service restart.
I will suggest to plan it follwoing manner :
- Give permissions to SQL server services account
- In first step of backup job create network map drive by XP_CMDSHELL
- In second step complete your backup
- In third step close network map drive
As mention by Alberto, You can use network drive as UNC path as well.
Please click the Mark as Answer or Vote As Helpful if a post solves your problem or is helpful!
- Proposed As Answer by scott_morris-ga Friday, August 31, 2012 4:06 PM
- Marked As Answer by Maggie LuoMicrosoft Contingent Staff, Moderator Sunday, September 09, 2012 1:09 PM

