About 47,200 results
Open links in new tab
  1. SQL Server encryption - SQL Server | Microsoft Learn

    Nov 22, 2024 · In SQL Server, encryption keys include a combination of public, private, and symmetric keys that are used to protect sensitive data. This section explains how to implement and manage encryption keys.

  2. Transparent data encryption (TDE) - SQL Server | Microsoft Learn

    Oct 30, 2024 · Learn about transparent data encryption, which encrypts SQL Server, Azure SQL Database, and Azure Synapse Analytics data, known as encrypting data at rest.

  3. SQL Server & database encryption keys - SQL Server | Microsoft …

    Mar 3, 2023 · SQL Server uses encryption keys to help secure data, credentials, and connection information that is stored in a server database. SQL Server has two kinds of keys: symmetric and asymmetric. Symmetric keys use the same password to encrypt and decrypt data.

  4. How to configure Transparent Data Encryption (TDE) in SQL Server

    Dec 19, 2016 · Transparent Data Encryption (TDE) was introduced in SQL Server 2008. Its main purpose was to protect data by encrypting the physical files, both the data (mdf) and log (ldf) files (as opposed to the actual data stored within the database).

  5. SQL Server Encryption Explained: TDE, Column-Level Encryption

    Jun 13, 2019 · This article describes 5 Microsoft SQL Server encryption types, including TDE, and explains when each of them can be used to encrypt data in your database.

  6. SQL Server Column Encryption and Decryption with Code Examples

    Dec 18, 2024 · This tip includes basic T-SQL examples for the crypt_gen_random function and symmetric keys within a SQL Server database. You will also discover T-SQL code samples for encrypting and decrypting a column of data in a table.

  7. Encrypting SQL Server: Transparent Data Encryption (TDE)

    Jan 12, 2017 · Transparent Data Encryption (TDE) encrypts the data within the physical files of the database, the 'data at rest'. Without the original encryption certificate and master key, the data cannot be read when the drive is accessed or the physical media is stolen.

  8. SQL Server TDE

    TDE stands for Transparent data encryption. TDE allows you to encrypt SQL Server data files. This encryption is called encrypting data at rest. In this tutorial, we’ll create a sample database, encrypt it using TDE, and restore the database to another server. First, create a test database called test_db: Next, switch to the test_db:

  9. Enabling, Querying and Modifying Data - SQL Server Tips

    May 9, 2023 · In 2015, during the SQL Server 2016 beta, I explored a new feature in this article, Always Encrypted. This feature finally allowed us to encrypt data at rest and on the wire, and I showed how beneficial this was and how much more secure your data could be.

  10. An overview of the column level SQL Server encryption - SQL

    Jan 14, 2020 · We have many encryptions available in SQL Server such as Transparent Data Encryption (TDE), Always Encrypted, Static data masking and Dynamic Data Masking. In this article, we will explore column level SQL Server encryption using symmetric keys. Let’s prepare the environment for this article. We use the following steps for column level encryption:

Refresh