How can we help you today? How can we help you today?
priyasinha
Hi Tim, If I understand correctly you are refering to using <ENCRYPTEDPASSWORD> in restore just like it is shown in backup script. The issue is that when you schedule restores script similar to the following: Code: EXEC master..sqlbackup '-sql "RESTORE ... WITH PASSWORD = [password]..."' The password is out in the open, in plain text. Regardless of how the password may be encrypted (different encryption scheme, different salt etc), as long as another user is able to access the script (via msdb, profiler, network sniffer etc), they can simply run the same script to run the restore without having to know the actual password. Thus you actually need to secure the script contained in the msdb table, and limit user rights to run Profiler. SQL Backup 3 allowed the use of encrypted passwords, but this lead to a false sense of security. We had a lot of internal discussions regarding this. We thought that DBAs were not worried that the restore script was exposed, not realising that the encrypted password was as good as the actual password. By forcing the use of the password in plain text, DBAs become more aware of the need to secure the script. And for that reason we pulled <ENCRYPTEDPASSWORD> support away from restore script. If you think there are better ways to encrypt restore script then please do suggest us. We would really appreciate it. Thanks, Priya / comments
Hi Tim, If I understand correctly you are refering to using <ENCRYPTEDPASSWORD> in restore just like it is shown in backup script. The issue is that when you schedule restores script similar to the...
0 votes
Hi Dan, Thanks for your feedback regarding the upgrade process. Sorry that you are encountering this other issue. Can you please send the screen shot at this email id backup.prerelease@red-gate.com? Thanks, Priya / comments
Hi Dan, Thanks for your feedback regarding the upgrade process. Sorry that you are encountering this other issue. Can you please send the screen shot at this email id backup.prerelease@red-gate.com...
0 votes
Hi, This is the exact scenario we are are trying to support with our new Network Resilience capability. You can configure how long to wait when a network outage happens. Do give it a try and let us know if it helps you in your case. Thanks, Priya / comments
Hi, This is the exact scenario we are are trying to support with our new Network Resilience capability. You can configure how long to wait when a network outage happens. Do give it a try and let us...
0 votes