Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How do i take a from local server backup to network drive.
I have joined my local pc to a domain,but i'm unable to access the drive yet.

what i have tried is,

SQL
use master
GO
EXEC sp_configure 'show advanced options', 1;
GO
RECONFIGURE;
GO

EXEC sp_configure 'xp_cmdshell',1
GO
RECONFIGURE
GO


EXEC XP_CMDSHELL 'net use Z: \\192.168.10.2\AUTOBACKUP\'



but it is throwing
SQL
System error 53 has occurred.
NULL
The network path was not found.
NULL
NULL


How do i fix this?
Posted

1 solution

The problem seems to be permission specific, If SQL Server runs under local system account which obviously dont have access to \\192.168.10.2. Check this for resolution[^]

Then you can look at this How to backup SQL Server databases to a mapped drive[^]
 
Share this answer
 
Comments
King Fisher 28-Jan-16 2:43am    
sorry,i have already tried this.

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