Hi Acko,If you write your own backup jobs, you'll have more control. Having said that, I doubt you'd be able to kick off a restore on another instance.regards a way of doing this:MSDB queryselect bs.backup_start_date,bf.physical_device_name,bf.logical_device_namefrom msdb..backupset bs inner join msdb..backupmediafamily bf on bs.media_set_id = bf.media_set_idwhere bs.database_name = 'Redbaron'and bs.type = 'D'and bs.backup_start_date = (select max(backup_start_date) from msdb..backupset where database_name = 'REdbaron' and type = 'D')
From there you can build your restore..a comment:Test and prod instances on same box? Is there no way you can get another box to run your test instance?*##* *##* *##* *##* Chaos, Disorder and Panic ... my work is done here!