Creating a certificate and an asymmetric key : CREATE CERTIFICATE « User Role « SQL Server / T-SQL Tutorial






7> CREATE CERTIFICATE MyCert
8>     WITH Subject = 'My Person Cert'
9> GO
Msg 15247, Level 16, State 1, Server J\SQLEXPRESS, Line 7
User does not have permission to perform this action.
1>
2> CREATE ASYMMETRIC KEY AsymKeyPerson
3>     WITH Algorithm = RSA_1024
4> GO
Msg 15247, Level 16, State 1, Server J\SQLEXPRESS, Line 2
User does not have permission to perform this action.
1>
2>








28.1.CREATE CERTIFICATE
28.1.1.Creating a certificate in the master database
28.1.2.Creating a certificate and an asymmetric key