Determine if DB is encrypted

  • Newbie question:

    I haven't worked much with encryption.

    How can I determine which (if any) of my SQL DBs are encrypted?

     

     

  • Database can't be encrypted.

    SQL Server encrypts :

    • Login and application role passwords stored in SQL Server.
    • Any data sent between the client and the server as network packets.
    • Stored procedure definitions.
    • User-defined function definitions.
    • View definitions.
    • Trigger definitions.
    • Default definitions.
    • Rule definitions.

     

     

  • In SQL 2008 and above a database can be encrypted. You can query the is_encrypted column in sys.databases to determine whether TDE is enabled for a particular database.

    for more info on TDE (Transparent data encryption) go to http://msdn.microsoft.com/en-us/library/bb934049.aspx

    John

  • Please note: 8 year old thread that dates back from before SQL 2008 exited.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 4 posts - 1 through 3 (of 3 total)

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