Comments
1 comment
-
When SQL Backup restores the t-logs, it uses a search pattern to determine which files to process, so something like this:
EXEC master..sqlbackup '-sql "RESTORE LOG adventureworks FROM DISK = [e:\backups\adventureworks_log_*.sqb] WITH NORECOVERY"'
will only pick up all files matching the adventureworks_log_*.sqb pattern.
So yes, you can place all the t-logs in a single directory, just as long as the pattern you are using to identify the t-log backup files are unique to each database in each restore task.
Add comment
Please sign in to leave a comment.
Thanks,