Hello,
I am exploring SQLBackupAndFTP for managing SQL Server backups and restorations. I have a specific requirement:
I need to restore a database while keeping it available in read-only mode during the restoration process, similar to SQL Server’s STANDBY option in Transact-SQL. This feature is crucial for allowing users to query the database while I sequentially apply full backups, differential backups, and transaction log backups.
For example, in SQL Server, I would typically use the following command:
RESTORE DATABASE MyDatabase
FROM DISK = 'C:\Backups\FullBackup.bak'
WITH STANDBY = 'C:\Backups\rollback_undo_file.bak';
This approach keeps the database accessible for read-only operations between incremental restorations.
Does SQLBackupAndFTP support this type of restoration process with the database in STANDBY mode? If not, is there a recommended workaround or a feature roadmap for implementing this functionality?
Thanks