Backing-up to UNC is failing, suggestions?
I've scheduled a database backup through Litespeed Console to backup to a UNC path, but it's not working. Here's the SQl from the step: declare @script nvarchar(4000)set @script = N'exec...
View ArticleRe: Backing-up to UNC is failing, suggestions?
Check your quotes. They should be single quotes, not double. If that does not help, then make sure the SQL Server service account has access to the destination folder. Let us know what you find....
View ArticleRe: Backing-up to UNC is failing, suggestions?
Sam, You may wish to change the UNC path. When I ran your script on my test server, adding the complete UNC path works: declare @script nvarchar(4000)set @script = N'exec...
View ArticleRe: Backing-up to UNC is failing, suggestions?
I never could get it to work right so what I did was created a scheduled task to map a network drive (X:) under the SYSTEM account on startup on the SQL server (I have 4 of them each with 26...
View Article