How can we help you today? How can we help you today?
MasterCephus
Yeah, unless they fix this issue, I am going to have to do the same thing...which I hate because it's just one more thing I have to worry about [image] Hopefully these guys will figure out the issue. / comments
Yeah, unless they fix this issue, I am going to have to do the same thing...which I hate because it's just one more thing I have to worry about Hopefully these guys will figure out the issue.
0 votes
grrr...same issue again. Is there a support phone number I can call and talk to someone about this? This is getting frustrating. I thought I figured out the issue and it was my fault. I had the backup creating a new folder every backup with the date as the name of the backup. So I thought maybe SQL Backup wasn't smart enough to know that those folders were created by the app and that it didn't look to delete them. So then I had all the backup files dumped into one folder and each file is named as: <date>_<name>.sqb and here is the job: DECLARE @exitcode int DECLARE @sqlerrorcode int EXECUTE master..sqlbackup N'-SQL "BACKUP DATABASES &#91;&lt;LIST OF DBS TO BACKUP&gt;&#93; TO DISK = ''E:\Backup\FULL\&lt;AUTO&gt;.sqb'' WITH COMPRESSION = 2, COPYTO = ''\\homebackup\FULL'', ERASEFILES = 3, FILEOPTIONS = 1, INIT, MAILTO = ''mailaddress'', THREADCOUNT = 4, VERIFY"', @exitcode OUT, @sqlerrorcode OUT IF &#40;@exitcode &gt;= 500&#41; OR &#40;@sqlerrorcode &lt;&gt; 0&#41; BEGIN RAISERROR &#40;'SQL Backup failed with exit code: %d SQL error code: %d', 16, 1, @exitcode, @sqlerrorcode&#41; END Where do I find the SQL Backup logs to see if there is failure and the type of failure that's going on? Please help me on this. / comments
grrr...same issue again. Is there a support phone number I can call and talk to someone about this? This is getting frustrating. I thought I figured out the issue and it was my fault. I had the b...
0 votes