S
Steve
Hi All
I have a windows forms application vb.net 2008 which uses SMO to do backups
to SQL Server 2005 express databases at intervals
In between full backups I do Incremental backups and until recently all
worked well
Now when an Incremental backup is done it is being created as another FULL
Backup within the backup set
I have actually stepped through this code as the backup is occurring , then
check the backup file in SQL server management studio and the file contains
numerous FULL backups
Any help appreciated
Regards
Steve
here is the relevant part of my code.....
srv = New Server(srvConn)
Dim bkDatabase As New Backup
bkDatabase.Action = BackupActionType.Database
bkDatabase.Incremental = True
bkDatabase.Database = "Haircuts"
Dim bkpDevice As BackupDeviceItem = New BackupDeviceItem(path,
DeviceType.File)
bkDatabase.Devices.Add(bkpDevice)
bkDatabase.SqlBackup(srv)
I have a windows forms application vb.net 2008 which uses SMO to do backups
to SQL Server 2005 express databases at intervals
In between full backups I do Incremental backups and until recently all
worked well
Now when an Incremental backup is done it is being created as another FULL
Backup within the backup set
I have actually stepped through this code as the backup is occurring , then
check the backup file in SQL server management studio and the file contains
numerous FULL backups
Any help appreciated
Regards
Steve
here is the relevant part of my code.....
srv = New Server(srvConn)
Dim bkDatabase As New Backup
bkDatabase.Action = BackupActionType.Database
bkDatabase.Incremental = True
bkDatabase.Database = "Haircuts"
Dim bkpDevice As BackupDeviceItem = New BackupDeviceItem(path,
DeviceType.File)
bkDatabase.Devices.Add(bkpDevice)
bkDatabase.SqlBackup(srv)