How can we help you today? How can we help you today?
jerryhung
I just did some testing with my Differential backup to confirm (should've done so yesterday) 1. Copy to network does not generate additional entries in msdb.dbo.backupset 2. Multi-thread does not create additional entries in msdb.dbo.backupset either However, it does generate more entries (3 threads = 3 entries, 2 threads = 2 entries) in the msdb.dbo.backupmediafamily, where I get my physical_device_name They would be using the same media_set_id, but different sequence # and GUID media_set_id family_sequence_number media_family_id 3600 1 1A8CA95E-0000-0000-0000-000000000000 3600 2 5E49F657-0000-0000-0000-000000000000 My question is just if that is expected/correct behaviour? If that's supposed to happen, I guess I just need to SELECT DISTINCT or remove duplicate file path by selecting family_sequence_number = 1 SELECT TOP 100 a.backup_finish_date ,CASE a.[type] WHEN 'D' THEN 'FULL' WHEN 'I' THEN 'DIFF' WHEN 'L' THEN 'Trans Log' ELSE a.type END AS backuptype ,a.server_name ,a.database_name ,a.recovery_model AS database_recovery_model ,b.physical_device_name FROM msdb.dbo.backupset a (NOLOCK) LEFT JOIN msdb.dbo.backupmediafamily b (NOLOCK) ON a.media_set_id = b.media_set_id WHERE 1 = 1 ORDER BY a.backup_finish_date DESC SELECT TOP 1000 * FROM msdb.dbo.backupmediafamily b (NOLOCK) WHERE physical_device_name LIKE '%sqb%' ORDER BY physical_device_name media_set_id family_sequence_number media_family_id media_count logical_device_name physical_device_name device_type physical_block_size mirror 3600 1 1A8CA95E-0000-0000-0000-000000000000 1 Red Gate SQL Backup (6.2.0.134):00000000003400000000000000026A000000145D000000000104 E:\Backup\AdventureWorks\DIFF_REPORTINGSERVICE_AdventureWorks_20091104_152716.sqb 7 65536 0 3600 2 5E49F657-0000-0000-0000-000000000000 1 Red Gate SQL Backup (6.2.0.134):00000000003400000000000000026A000000145D000000000104 E:\Backup\AdventureWorks\DIFF_REPORTINGSERVICE_AdventureWorks_20091104_152716.sqb 7 65536 0 / comments
I just did some testing with my Differential backup to confirm (should've done so yesterday) 1. Copy to network does not generate additional entries in msdb.dbo.backupset 2. Multi-thread does not c...
0 votes
I just did a test restore, and by default SQL Backup 6.2 picked the nested "C:\Program Files\.........." directory instead of the E:\MSSQL\DATA and E:\MSSQL\LOG directories specified in the "Database Settings" / comments
I just did a test restore, and by default SQL Backup 6.2 picked the nested "C:\Program Files\.........." directory instead of the E:\MSSQL\DATA and E:\MSSQL\LOG directories specified in the "Databa...
0 votes