Changes for page sql-tde
Last modified by Nikhil Singh on 2026/07/03 08:32
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
-
Attachments (0 modified, 1 added, 0 removed)
-
Objects (0 modified, 1 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,281 +1,305 @@ 1 -= TDE(backup from smsstoazure)=1 += **1. Steps for Implementing Transparent Data Encryption (TDE) FROM SQL Server** = 2 2 3 3 4 - 1Createmasterkey inmaster database(setmasterkey)4 +This document outlines the process of **encrypting SQL Server databases** using **Transparent Data Encryption (TDE)** and backing them up to **Azure Storage**. TDE ensures data at rest is encrypted, leveraging a **Master Key (MK)**, **TDE Certificate**, and **Database Encryption Key (DEK)** for encryption. 5 5 6 - 2CreateTDEcertificate(encrypted byMK)6 +The process also includes creating a **credential** for secure backup to **Azure Blob Storage**, providing a scalable and secure solution for storing encrypted databases in the cloud. 7 7 8 -3 Backup the Certificate and private key, By encryption with a password ( did not do it in this case due to storage blog problems) 9 9 10 - 4 Choose DB to create the DEK ,Create database encryption key (DEK) withalgorithm( AES= 256)andencryptionby certificate9 +[[image:image-20250305152543-1.png]] 11 11 12 -5 Set encryption on for the database 13 13 14 --- 6 Create a new credential with the SAS token 15 -CREATE CREDENTIAL [https://zagpebslab.blob.core.windows.net/sql-backups] 16 -WITH IDENTITY = 'SHARED ACCESS SIGNATURE', 17 -SECRET = 'sp=racwdli&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=kBFwlj5S5eqBEE32LM1EFebBY0W94uEFiwOXo3R0yt4%3D'; 18 -Go-- 12 +**~1. Create a Master Key in the master Database** 13 +The first step is to create a **Master Key** in the master database. This key will be used to encrypt other cryptographic objects, such as certificates and symmetric keys, within SQL Server. 19 19 20 ---7 Perform the database backup with the provided parameters 21 -EXECUTE dba.dbo.DatabaseBackup 22 - @Databases = 'dba', -- Replace with your database name 23 - @URL = '[[https:~~/~~/zagpebslab.blob.core.windows.net/sql-backups'>>https://zagpebslab.blob.core.windows.net/sql-backups']], -- Azure Blob Storage URL 24 - @BackupType = 'Full', -- Full backup 25 - @CopyOnly = 'Y', -- Copy-only backup to avoid breaking backup chain 26 - @Compress = 'Y', -- Compress the backup 27 - @Verify = 'N'; -- No verification of backup 28 -GO-- 29 29 16 +**2. Create a TDE Certificate (Encrypted by the Master Key)** 17 +Next, generate a **TDE certificate** that will be used to encrypt the **Database Encryption Key (DEK)**. This certificate is encrypted by the **Master Key** created in step 1, providing an additional layer of security. 30 30 31 -The backup was unable to be done from smss to azure ( the MI does not support encrypted DBs to be backed up from smss to azure) 32 32 33 -We have unencrypted a database and backed it up from ssms to azure blob successfully 20 +**3. Choose the Database to Create the Database Encryption Key (DEK)** 21 +For the selected database, create the **Database Encryption Key (DEK)**. The DEK will be encrypted by the **TDE certificate** and will use the **AES-256 encryption algorithm** to ensure data is securely encrypted at rest. 34 34 35 35 36 -Conclusion: Can be done with and unencrypted DB but not with an Encrypted one> 24 +**4. Enable Encryption for the Database** 25 +Once the **DEK** has been created, enable **TDE** for the database. This ensures that all data written to the database is automatically encrypted at rest, providing full protection for sensitive information. 37 37 38 38 28 +**5. Create a Credential with a SAS Token** 29 +Finally, create a **credential** that allows SQL Server to access Azure Blob Storage. This credential is created using a **Shared Access Signature (SAS) token**, which ensures secure and authenticated access to the storage account for backup purposes. 39 39 31 +{{code language="sql"}} 32 +drop credential [https://zagpebslab.blob.core.windows.net/sql-backups] 33 +CREATE CREDENTIAL [https://zagpebslab.blob.core.windows.net/sql-backups] 34 +WITH IDENTITY='SHARED ACCESS SIGNATURE' 35 +, SECRET = 'sp=racwdli&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=kBFwlj5S5eqBEE32LM1EFebBY0W94uEFiwOXo3R0yt4%3D' 36 +GO 37 + 38 +{{/code}} 40 40 41 41 41 +**~ 6. Use a Stored Procedure to Back Up to Azure Storage Account** 42 42 43 +{{code language="sql"}} 44 +EXECUTE dba.dbo.DatabaseBackup 45 +@Databases = 'dba', 46 +@URL = 'https://zagpebslab.blob.core.windows.net/sql-backups', 47 +@BackupType = 'Full', 48 +@CopyOnly = 'Y', 49 +@Compress = 'Y', 50 +@Verify = 'N' 51 +{{/code}} 43 43 53 +=== === 44 44 55 +=== Conclusion: Backup to Azure Storage Account with TDE Encrypted Databases === 45 45 57 +The attempt to back up an **encrypted database** (with Transparent Data Encryption - TDE) from **SQL Server Management Studio (SSMS)** to an Azure Storage Account was unsuccessful. This issue arises because **Azure does not permit TDE-encrypted databases to be backed up directly to Azure Storage using SSMS**. 46 46 59 +However, after decrypting the database, we were able to successfully back it up to the Azure Storage Account via SSMS. This confirms that **backups can be performed on an unencrypted database**, but **not on an encrypted database**. 47 47 48 48 49 49 50 50 51 51 65 += **2. Enabling Transparent Data Encryption (TDE) Using Azure Key Vault** = 52 52 53 53 68 +**Introduction:** This document outlines the process of enabling **Transparent Data Encryption (TDE)** on an **Azure SQL Managed Instance (SQL MI)** using a **Customer-Managed Key (CMK)** stored in **Azure Key Vault**. The encryption is managed using an asymmetric key from **Azure Key Vault**, ensuring that all data within the SQL Managed Instance is encrypted using a strong encryption algorithm. 54 54 55 55 71 +===== **1. Generate a Key in Azure Key Vault** ===== 56 56 57 57 74 +**- Navigate to Azure Key Vault:** 58 58 76 +* Go to the **Azure Portal** and select **Key Vault** (DemoRudiTest). 59 59 78 +**- Generate a New Key:** 60 60 80 +* Go to the **Keys** section and click **Generate** to create a new key. 61 61 82 +**- Configure Key Settings:** 62 62 84 +* **Name the Key**: Choose a name for your key, e.g., mysqlmikey. 85 +* **Key Type**: Select **RSA** as the key type. 86 +* **RSA Key Size**: Choose an **RSA key size** of **2048-bit**. (optional) 63 63 64 -1 CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'YourStrongPasswordHere!'; 65 -GO 88 + Note: 66 66 67 - CREATECERTIFICATETDE_Certificate68 - WITHSUBJECT='TDECertificate';69 - GO90 +* switching from 2048-bit RSA to 4096-bit RSA for TDE will affect performance, but the actual impact might be minor, especially on modern hardware and typical workloads. 91 +* **It will likely affect CPU usage** more than disk I/O, and the impact might be more noticeable during key management operations (key generation, encryption, etc.). 92 +* If your database is not under heavy load and your hardware can handle the extra processing, the trade-off for better security may be worth it. 70 70 71 -2 USE master; 72 -GO 94 +**- Create the Key:** 73 73 74 -SELECT 75 - cert.name AS Certificate_Name, 76 - cert.subject AS Certificate_Subject, 77 - cert.issuer_name AS Issuer_Name, 78 - cert.pvt_key_encryption_type AS Private_Key_Encryption_Type 79 -FROM 80 - sys.certificates cert 81 -WHERE 82 - cert.name LIKE 'TDE%'; 96 +* Click **Create** to generate the key. 83 83 98 +===== **2. Enable TDE on the SQL Managed Instance** ===== 84 84 85 -3 BACKUP CERTIFICATE TDE_Certificate 86 -TO FILE = https://zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D\TDE_Certificate.cer' 87 -WITH PRIVATE KEY ( 88 - FILE = https://zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D\TDE_PrivateKey.pvk', 89 - ENCRYPTION BY PASSWORD = 'AnotherStrongPasswordHere!' 90 -); 91 -GO 100 +===== ===== 92 92 102 +**- Navigate to Your Managed Instance:** 93 93 94 -USE Normal; 95 -GO 104 +* Go to your **SQL Managed Instance** (sqlmi-ebs-lab). 96 96 97 --- 6. Create a Database Encryption Key (DEK) and encrypt it with the TDE certificate 98 -CREATE DATABASE ENCRYPTION KEY 99 -WITH ALGORITHM = AES_256 100 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 101 -GO-- 106 +**- Enable Transparent Data Encryption (TDE):** 102 102 103 -USE [dba] 104 -GO 108 +* Under **Security**, select **Transparent Data Encryption**. 105 105 106 -CREATE DATABASE ENCRYPTION KEY 107 -WITH ALGORITHM = AES_256 108 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 109 -GO 110 +**- Configure TDE with a Customer-Managed Key (CMK):** 110 110 112 +* Select **Customer-managed key** as the encryption type. 113 +* Choose the key you created earlier from **Azure Key Vault** (mysqlmikey). 111 111 112 -USE [dba1] 113 -GO 115 +**- Set the Key as Default TDE Protector:** 114 114 115 -CREATE DATABASE ENCRYPTION KEY 116 -WITH ALGORITHM = AES_256 117 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 118 -GO 117 +* Make the key the **default TDE protector** for your instance. 119 119 119 +**- Save Configuration:** 120 120 121 -USE [dba2] 122 -GO 121 +* Click **Save** to apply the changes. 123 123 124 -CREATE DATABASE ENCRYPTION KEY 125 -WITH ALGORITHM = AES_256 126 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 127 -GO 123 +=== **Conclusion** === 128 128 125 +After following these steps, **TDE** has been successfully enabled on your **SQL Managed Instance** using an **asymmetric key** stored in **Azure Key Vault**. All databases within the instance are now encrypted using the same encryption key (identified by the same encryption thumbprint). You can now securely back up these encrypted databases from **SSMS** to **Azure Storage**. 129 129 130 -USE [dba3] 131 -GO 127 +This process ensures that your data is protected both at rest and during backup, offering enhanced security for your managed databases in the cloud. 132 132 133 -CREATE DATABASE ENCRYPTION KEY 134 -WITH ALGORITHM = AES_256 135 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 136 -GO 137 137 138 -USE [xwiki] 139 -GO 140 140 141 -CREATE DATABASE ENCRYPTION KEY 142 -WITH ALGORITHM = AES_256 143 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 144 -GO 131 +=== **1. Backup Specific Databases Using SQL Server Agent Jobs** === 145 145 133 +This document describes the process of creating an automated **SQL Server Agent Job** to back up only the **DBA databases** in a SQL Server instance. The backups will occur **daily at 3:00 AM** and will be stored in an **Azure Storage Account** for secure and reliable cloud storage. 146 146 147 --- 7. Enable Transparent Data Encryption (TDE) on the database 148 -ALTER DATABASE dba 149 -SET ENCRYPTION ON; 150 -GO-- 135 +---- 151 151 137 +==== **1. Create the Backup Script** ==== 152 152 153 -select name, database_id, state_desc 154 -from sys.databases 155 155 140 +====== **- Declaring Variables** ====== 156 156 157 -SELECT 158 - database_id, 159 - key_algorithm, 160 - key_length, 161 - encryption_state_desc 162 - encryptor_type 142 +{{code language="sql"}} 143 +DECLARE @DatabaseName NVARCHAR(128) 144 +DECLARE @BackupContainerURL NVARCHAR(512) 145 +{{/code}} 163 163 164 -FROM 165 - sys.dm_database_encryption_keys; 147 +DECLARE @DatabaseName NVARCHAR(128) DECLARE @BackupContainerURL NVARCHAR(512) 166 166 149 +* **@DatabaseName**: A variable to hold the name of the database during each iteration of the loop. 150 +* **@BackupContainerURL**: A variable to store the URL of the Azure Blob Storage container where the database backups will be stored. 167 167 168 - Select * from sys.dm_database_encryption_keys152 +---- 169 169 154 +====== **2. Setting the Azure Blob Storage URL** ====== 170 170 171 - BACKUP DATABASE [dba2] 172 -TO URL = '[[https:~~/~~/zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D'>>https://zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D']] 173 -With copy_only 174 -GO 156 +{{code language="sql"}} 157 +SET @BackupContainerURL = 'https://<your_storage_account>.blob.core.windows.net/sql-backups/' 158 +{{/code}} 175 175 176 176 177 -BACKUP DATABASE [dba2] 178 -TO URL = '[[https:~~/~~/zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D'>>https://zagpebslab.blob.core.windows.net/sql-backups?sp=racwl&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=eQKxB%2F0bg5cX71PmhUTlGHLCnIwSbe5CLOWVVkaDR1g%3D']], 179 - 180 - COPY_ONLY, -- Ensures the backup does not affect the regular backup chain 181 - COMPRESSION, -- Optional: Compresses the backup to save storage space 182 - STATS = 10 -- Optional: Provides backup progress status 183 -GO-- 161 +---- 184 184 163 +====== **3. Declaring the Cursor** ====== 185 185 186 186 187 --- Step 1: Drop the existing credential (if needed) 188 -DROP CREDENTIAL [https://zagpebslab.blob.core.windows.net/sql-backups]; 189 -GO-- 166 +{{code language="sql"}} 167 +DECLARE db_cursor CURSOR FOR 168 +SELECT name 169 +FROM sys.databases 170 +WHERE name LIKE 'dba%' -- Only pick databases that start with 'dba' 171 +{{/code}} 190 190 191 --- Step 2: Create a new credential with the SAS token 192 -CREATE CREDENTIAL [https://zagpebslab.blob.core.windows.net/sql-backups] 193 -WITH IDENTITY = 'SHARED ACCESS SIGNATURE', 194 -SECRET = 'sp=racwdli&st=2025-02-25T13:28:42Z&se=2026-02-25T21:28:42Z&spr=https&sv=2022-11-02&sr=c&sig=kBFwlj5S5eqBEE32LM1EFebBY0W94uEFiwOXo3R0yt4%3D'; 195 -GO-- 173 +* **Cursor Declaration**: 174 +** The cursor db_cursor is declared to loop through the list of databases in the sys.databases system view. 175 +** The **WHERE name LIKE 'dba%'** clause ensures that only databases with names starting with dba will be processed. For example, databases like dbaTest, dbaProd, etc., will be included in the loop. 176 +** **sys.databases**: A system catalog view that contains information about each database in the SQL Server instance. 196 196 197 --- Step 3: Perform the database backup with the provided parameters 198 -EXECUTE dba.dbo.DatabaseBackup 199 - @Databases = 'dba', -- Replace with your database name 200 - @URL = '[[https:~~/~~/zagpebslab.blob.core.windows.net/sql-backups'>>https://zagpebslab.blob.core.windows.net/sql-backups']], -- Azure Blob Storage URL 201 - @BackupType = 'Full', -- Full backup 202 - @CopyOnly = 'Y', -- Copy-only backup to avoid breaking backup chain 203 - @Compress = 'Y', -- Compress the backup 204 - @Verify = 'N'; -- No verification of backup 205 -GO-- 178 +---- 206 206 180 +====== **4. Opening the Cursor** ====== 207 207 182 +{{code language="sql"}} 183 +OPEN db_cursor 184 +FETCH NEXT FROM db_cursor INTO @DatabaseName 185 +{{/code}} 208 208 187 +OPEN db_cursor FETCH NEXT FROM db_cursor INTO @DatabaseName 209 209 189 +* **OPEN db_cursor**: This opens the cursor for reading the results. 190 +* **FETCH NEXT**: The FETCH NEXT statement retrieves the first database name that meets the LIKE 'dba%' condition and stores it in the @DatabaseName variable. This will be used in the next step where the backup procedure is executed. 210 210 211 -select name, database_id, state_desc 212 -from sys.databases 192 +---- 213 213 194 +====== **5. Looping Through Databases** ====== 214 214 215 - SELECT216 - database _id,217 - key_algorithm,218 - key_length,219 - encryption_state_desc220 - encryptor_type196 +{{code language="sql"}} 197 +-- Loop through each database and execute the stored procedure 198 +WHILE @@FETCH_STATUS = 0 199 +BEGIN 200 + -- Print current database for logging/debugging 201 + PRINT 'Backing up database: ' + @DatabaseName 221 221 222 -FROM 223 - select * from sys.dm_database_encryption_keys; 203 + -- Execute the DatabaseBackup stored procedure for each database 204 + EXECUTE dba.dbo.DatabaseBackup 205 + @Databases = @DatabaseName, -- Specify the current database 206 + @URL = @BackupContainerURL, -- Azure Blob Storage URL 207 + @BackupType = 'Full', -- Full backup type 208 + @CopyOnly = 'Y', -- Use copy-only backup (this doesn’t affect the transaction log chain) 209 + @Compress = 'Y', -- Enable compression 210 + @Verify = 'N'; -- Skip verification after backup 224 224 212 +{{/code}} 225 225 226 - select name, is_encrypted from sys.databases 227 227 215 +* **WHILE @@FETCH_STATUS = 0**: The loop will continue as long as the FETCH command successfully retrieves a database name. @@FETCH_STATUS is a system function that returns 0 if the fetch operation is successful. 216 +* **PRINT**: This line prints the name of the database that is currently being backed up. It helps with logging or debugging purposes, as you can track which database is being processed at any given time. 217 +* ((( 218 +**EXECUTE dba.dbo.DatabaseBackup**: 228 228 229 - SELECT230 - cert.nameASCertificate_Name,231 - ce rt.subjectASCertificate_Subject,232 - cert.issuer_nameAS Issuer_Name,233 - ce rt.pvt_key_encryption_typeASPrivate_Key_Encryption_Type234 - FROM235 - s ys.certificates cert236 - WHERE237 - cert.name LIKE 'TDE%';220 +* This calls a stored procedure named dba.dbo.DatabaseBackup for each database. 221 +* The parameters passed to the stored procedure: 222 +** **@Databases = @DatabaseName**: Specifies which database to back up (the current database being processed). 223 +** **@URL = @BackupContainerURL**: Specifies the destination Azure Blob Storage URL. 224 +** **@BackupType = 'Full'**: Specifies the backup type, which is a **Full** backup (this means all data in the database is backed up). 225 +** **@CopyOnly = 'Y'**: Specifies that this is a **copy-only backup**. This ensures that the backup does not affect the transaction log chain and does not interfere with regular backups. 226 +** **@Compress = 'Y'**: Enables compression of the backup, reducing the size of the backup file. 227 +** **@Verify = 'N'**: Specifies that the backup verification step should be skipped. (Verification can be added if needed for additional safety.) 228 +))) 238 238 239 - ALTER DATABASE dba1 240 -SET ENCRYPTION off; 241 -GO 230 +---- 242 242 232 +====== **6. Fetch the Next Database** ====== 243 243 244 -Use dba1; 245 -DROP DATABASE ENCRYPTION KEY; 234 +{{code language="sql"}} 235 + -- Fetch the next database in the cursor 236 + FETCH NEXT FROM db_cursor INTO @DatabaseName 246 246 238 +{{/code}} 247 247 248 -USE [dba1] 249 -GO 240 +~-~- Fetch the next database in the cursor FETCH NEXT FROM db_cursor INTO @DatabaseName 250 250 251 -CREATE DATABASE ENCRYPTION KEY 252 -WITH ALGORITHM = AES_256 253 -ENCRYPTION BY SERVER CERTIFICATE TDE_Certificate; 254 -GO 242 +* **FETCH NEXT**: After executing the backup for the current database, this statement retrieves the next database from the cursor and stores it in the @DatabaseName variable. The loop will continue until all matching databases have been processed. 255 255 244 +---- 256 256 246 +====== **7. Closing and Deallocating the Cursor** ====== 257 257 258 -ALTER DATABASE dba1 259 -SET ENCRYPTION ON 248 +{{code language="sql"}} 249 +-- Close and deallocate the cursor to clean up resources 250 +CLOSE db_cursor 251 +DEALLOCATE db_cursor 252 + 260 260 254 +{{/code}} 261 261 256 +* **CLOSE db_cursor**: This closes the cursor once the loop finishes processing all databases. 257 +* **DEALLOCATE db_cursor**: This deallocates the cursor, freeing up any resources used by the cursor. It’s a good practice to always deallocate cursors to avoid resource leaks. 262 262 259 +====== ====== 263 263 261 +====== **8. Full Script** ====== 264 264 265 265 264 +{{code language="sql"}} 265 +DECLARE @DatabaseName NVARCHAR(128) 266 +DECLARE @BackupContainerURL NVARCHAR(512) 266 266 268 +SET @BackupContainerURL = 'https://zagpebslab.blob.core.windows.net/sql-backups' 267 267 270 +DECLARE db_cursor CURSOR FOR 271 +SELECT name 272 +FROM sys.databases 273 +WHERE name LIKE 'dba%' 268 268 275 +OPEN db_cursor 276 +FETCH NEXT FROM db_cursor INTO @DatabaseName 269 269 278 +WHILE @@FETCH_STATUS = 0 279 +BEGIN 270 270 281 +PRINT 'Backing up database: ' + @DatabaseName 271 271 283 +EXECUTE dba.dbo.DatabaseBackup 284 + @Databases = @DatabaseName, 285 + @URL = @BackupContainerURL, 286 + @BackupType = 'Full', 287 + @CopyOnly = 'Y', 288 + @Compress = 'Y', 289 + @Verify = 'N'; 272 272 291 +FETCH NEXT FROM db_cursor INTO @DatabaseName 292 +END 273 273 294 +CLOSE db_cursor 295 +DEALLOCATE db_cursor 274 274 297 +{{/code}} 275 275 276 276 277 277 278 278 302 +=== === 279 279 280 280 281 281 ... ... @@ -290,40 +290,4 @@ 290 290 291 291 292 292 293 -{{code language="sql"}} 294 -USE master; 295 -GO 296 -CREATE MASTER KEY ENCRYPTION BY PASSWORD = '******'; 297 -GO 298 - 299 -CREATE CERTIFICATE EBSphere_TDE_SQL2019_Cert WITH SUBJECT = 'Database_Encryption'; 300 -GO 301 - 302 -BACKUP CERTIFICATE EBSphere_TDE_SQL2019_Cert TO FILE = 'D:\temp\EBSphere_TDE_SQL2019_Cert' 303 -WITH PRIVATE KEY (file = 'D:\temp\EBSphere_TDE_SQL2019_Cert_Key.pvk', 304 -ENCRYPTION BY PASSWORD='*****') 305 - 306 -USE Everest_TDE_Master; 307 -GO 308 -CREATE DATABASE ENCRYPTION KEY 309 -WITH ALGORITHM = AES_256 310 -ENCRYPTION BY SERVER CERTIFICATE EBSphere_TDE_SQL2019_Cert; 311 -GO 312 -ALTER DATABASE Everest_TDE_Master 313 -SET ENCRYPTION ON; 314 -GO 315 - 316 -USE Everest_TDE_Master_Documents; 317 -GO 318 -CREATE DATABASE ENCRYPTION KEY 319 -WITH ALGORITHM = AES_256 320 -ENCRYPTION BY SERVER CERTIFICATE EBSphere_TDE_SQL2019_Cert; 321 -GO 322 -ALTER DATABASE Everest_TDE_Master_Documents 323 -SET ENCRYPTION ON; 324 -GO 325 -{{/code}} 326 - 327 - 328 - 329 329
- image-20250305152543-1.png
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.rudim - Size
-
... ... @@ -1,0 +1,1 @@ 1 +19.6 KB - Content
- XWiki.XWikiComments[0]
-
- Author
-
... ... @@ -1,0 +1,1 @@ 1 +XWiki.rudim - Comment
-
... ... @@ -1,0 +1,1 @@ 1 +put the sql code in code tags to start with otherwise its very hard to read - Date
-
... ... @@ -1,0 +1,1 @@ 1 +2025-02-26 16:00:04.223