Question : SQL Backups Duplicating

Experts,

i had a SQL backup job that was scheduled for 830 that was causing one or two problems. I created a second job for 10.30 and ran them concurrently for a few days to see if the later time ran without problems. It did, so I deleted the first job.

now, every morning I have duplicate backups - one set at 830, one at 1030. I can't figure out why. the maintenance plan has been deleted, and there is no other SQL job set for 830.

This is a clustered environment, so I'll be failing it over tonight to see if this helps, but it doesn't make sense to me. Any thoughts?

Answer : SQL Backups Duplicating

They're quite simple really :)

Here's a basic example to start you off, what do you need to include?

Chris
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
$TTL 86400 ; Default TTL: 1 Day

@       IN SOA  ns1.domain.com.     hostmaster.domain.com. (
                                2010072101      ; Serial
                                7200            ; Refresh: 2 Hours
                                900             ; Retry: 15 Minutes
                                2419200         ; Expire: 4 Weeks
                                86400)          ; Minimum TTL: 1 Day

        IN NS           ns1

        IN MX   10      mail

        IN TXT          "v=spf1 a:mail.domain.com -all"

        IN A            <SomeIP>
ns1     IN A            <SomeIP>

www     IN A            <SomeIP>
mail    IN A            <SomeIP>
Random Solutions  
 
programming4us programming4us