crypt

  • Hey guys, is it possible to store encypted database keys outside of SQL server?

  • Service master key, yes.

    Database master keys, yes.

    Certificates, yes.

    Asymmetric and symmetric keys, no.

    K. Brian Kelley
    @kbriankelley

  • could you explain the process of doing that?

    Also isn't the database master key a symmetric key?

    thanks

  • There are T-SQL commands (you'll find the exact syntax in Books Online):

    BACKUP SERVICE MASTER KEY

    BACKUP MASTER KEY

    BACKUP CERTIFICATE

    K. Brian Kelley
    @kbriankelley

  • Also isn't the database master key a symmetric key?

  • Yes, but because of its importance, you can back it up with the BACKUP MASTER KEY command.

    K. Brian Kelley
    @kbriankelley

Viewing 6 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic. Login to reply