I ran the following script to create the master key for one of the databases I created, but I was not able to see they key in the node (see snapshot); does anyone know why? I look forward to hearing your reply, thank you.
USE AdventureWorks
GO
CREATE MASTER KEY ENCRYPTION BY PASSWORD = '23987hxJ#KL95234nl0zBe'
GO
You cannot see this information in the SSMS GUI, but you can see whether a database has a master key if you run the following:
SELECT d.is_master_key_encrypted_by_server
FROM sys.databases AS d
WHERE d.name = 'AdventureWorks';
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With