You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL Command allows specifying the file name when backing up the service master key. Backup-DbaDbMasterKey currently automatically sets the filename. It would be nice to have the option here as well.
Relates to #9485, #9483
Is there a command that is similiar or close to what you are looking for?
Yes
Technical Details
SQL
USE [YourDB];
OPEN MASTER KEY DECRYPTION BY PASSWORD = 'DecryptionPassword';
BACKUP MASTER KEY TO FILE = 'c:\temp\exportedmasterkey.key'
ENCRYPTION BY PASSWORD = 'EncryptionPassword';
Existing File name command, Line 147 $filename = Join-DbaPath -SqlInstance $server -Path $actualPath -ChildPath "$fileinstance-$dbname-masterkey.key"
Suggested change adding an option Filename parameter
Summarize Functionality
SQL Command allows specifying the file name when backing up the service master key. Backup-DbaDbMasterKey currently automatically sets the filename. It would be nice to have the option here as well.
Relates to #9485, #9483
Is there a command that is similiar or close to what you are looking for?
Yes
Technical Details
SQL
Existing File name command, Line 147
$filename = Join-DbaPath -SqlInstance $server -Path $actualPath -ChildPath "$fileinstance-$dbname-masterkey.key"
Suggested change adding an option Filename parameter
The text was updated successfully, but these errors were encountered: