Started getting this Error when I Execute the following code
DECLARE @Returncode int
declare @digitalLocation varchar(500)
set @digitalLocation = '\\MainFolder\SecondFolder\%database%_backup_%timestamp%.safe'
declare @location varchar(500)
set @location = 'D:\MainBackUpFolder\FullBackups\%database%\%database%_backup_%timestamp%.safe'
declare @DatabaseName varchar(300)
set @DatabaseName = 'Digital'
exec @Returncode = xp_ss_backup @database = @DatabaseName, @filename = @digitalLocation, @verify = 1
cant find anything on google, can anyone help?
xp_ss_backup did not complete. An error(0,1) was encountered. Please check the parameters and their values. [v4.9.605.3451]
SQLsafeCmd output:
------------------
SQLsafe Freeware Edition CLI Version 4.9.605.3451
Copyright (c) 2004-2008 BBS Technologies, Inc., All Rights Reserved.
<http://www.idera.com/>
Connecting to Backup Agent on SKYADMIN...success. (4.9.605.3451)
Connecting to SQL Server SKYADMIN...success. (9.0.5000.0 SP3+)
BACKUP digital...FAILED.
Server instance: SKYADMIN, Database: digital
External component has thrown an exception.
--- End of SQLsafeCmd output ---