How can we help you today? How can we help you today?
dylanfinney
Thanks for the reply. I double checked and the account that the service runs under does have rights to delete from the network location. / comments
Thanks for the reply. I double checked and the account that the service runs under does have rights to delete from the network location.
0 votes
Huh... it just stopped doing it. Sorry for the post, I'll try and find out how I got the behavior to start and post the steps. / comments
Huh... it just stopped doing it. Sorry for the post, I'll try and find out how I got the behavior to start and post the steps.
0 votes
You can use the Restore wizard to restore to a remote server. You need to add the server you want to restore to in SQL Backup. When you open the Restore wizard you can then select the SQL Server on step 1. You will need to browse for the backup files to restore. And to be clear that server must also have SQL Backup server components installed on it. Clive, can you get the file names that you need for your script out of the [msdb].[dbo].[backupset] and [msdb].[dbo].[backupmediafamily] tables? Here's a chunk of code that might help you out. SELECT [backupset].[backup_set_uuid], [backupset].[backup_start_date], [backupset].[type], [backupmediafamily].[physical_device_name], RIGHT([backupmediafamily].[physical_device_name],CHARINDEX('\',REVERSE([backupmediafamily].[physical_device_name])) - 1) AS [FileName] FROM [msdb].[dbo].[backupset] INNER JOIN [msdb].[dbo].[backupmediafamily] ON [backupset].[media_set_id] = [backupmediafamily].[media_set_id] WHERE [backupset].[database_name] = @RestoreFromDB AND [backupset].[backup_start_date] BETWEEN @RestoreStart AND @RestoreEnd AND [backupmediafamily].[logical_device_name] LIKE 'Red%' If you need the actual file paths of the log and data files you can find those out in [msdb].[dbo].[backupfile] / comments
You can use the Restore wizard to restore to a remote server. You need to add the server you want to restore to in SQL Backup. When you open the Restore wizard you can then select the SQL Server ...
0 votes
Yep, that fixed it. Maybe we can add to the list of changes for 2.0 that it will connect to the IP that resolves or the IP given instead of doing it's own thinking on the subject :? / comments
Yep, that fixed it. Maybe we can add to the list of changes for 2.0 that it will connect to the IP that resolves or the IP given instead of doing it's own thinking on the subject :?
0 votes