Hi Marco,
Help me better understand the issue.
How often do you have backups scheduled?
What types of backups are you taking (full, differential, transactional)?
How often do the backups succeed?
How often do they fail? When they fail, are there any backups created?
How are you determining if the backup was successful? Are you looking in the backup folder and seeing that some backups are missing?
I wonder if the task scheduler is not always running the jobs. The only event log that gets created is in the event of a failure. So you would not see an event if the job does not run. However if you see a new log file, then clearly
it runs.
One way to diagnose is to run dbgview.exe (download from
http://technet.microsoft.com/en-us/sysinternals/bb896647.aspx)
enable tracing:
reg.exe add "HKLM\Software\Microsoft\TeamFoundationServer\11.0\Admin" /v TraceLevel /t REG_DWORD /d 4 /f
reg.exe add "HKLM\Software\Microsoft\TeamFoundationServer\11.0\Admin" /v TraceLevel /t REG_DWORD /d 4 /f /reg:64
and collect the output. Open the Task Scheduler and run the backup tasks from there.
thanks,
Will