Search results for "tde"

Your search for "tde" returned 100 results:

Technical Article

SQL Backup Not Compressing with TDE Enabled

  • Topic

All, I ran into a strange bug and wanted to see if anyone else has experienced this. It's on a SQL 2019 Standard (CU 8) instance with a TDE enabled database and database compression turned on at the instance level. There seems to be a bug when backing up a TDE enabled database with backup […]

You rated this post out of 5. Change rating

2020-12-17

319 reads

Technical Article

TDE and Data compression questions!!!!

  • Topic

My database has TDE (database level, NOT the column level). My drive are filing up and don't have option to add another drives. some of my tables contains data types (max) varchar.... when I run calculations from GUI I find I can save some of the spaces. Questions are: 1. Since it's TDE enable should […]

You rated this post out of 5. Change rating

2015-03-09

93 reads

Technical Article

Restore TDE Database without the Private Key

  • Topic

I thought that you need the Private Key to restore a TDE Database? All that I have is the following: tde.key tde.cert Master.Key Service Master.Key Is this enough to restore a TDE Database? I tried looking up the syntax to do the restore but I'm not clear on the steps that are needed. I did […]

You rated this post out of 5. Change rating

2016-01-28

190 reads

Technical Article

TDE And Restores - Something Different

  • Topic

Is it possible to restore through a TDE encryption operation? By this I mean restoring the unencrypted backup taken pre-encryption, then applying the transaction logs that bridge the pre/post encryption period, using the key for all log backups from the first log backup with encrypted data.  

You rated this post out of 5. Change rating

2024-03-12

21 reads

Technical Article

TDE and absolutely ridiculous amounts of corruption?

  • Topic

I've searched around quite a bit and can't find anyone else with this problem, but ever since we implemented TDE encryption (we have a separate certificate for each Instance but not each database) we have seen corruption pop up ALL OVER THE PLACE.  This is especially the case with ETL servers.. seems like even 1 […]

You rated this post out of 5. Change rating

2019-01-23

324 reads

Technical Article

TDE and HIPAA

  • Topic

Wondering if using TDE satisfies HIPAA requirements around encrypting PHI and PII data and if anyone knows if there are any specific Microsoft documents pointing to TDE as such. I found this: https://www.microsoft.com/sqlserver/2008/en/us/compliance.aspx but it's not real detailed. Thanks!

You rated this post out of 5. Change rating

2014-02-26

390 reads

Blogs

Migrate datetime data to datetimeoffset with AT TIME ZONE

By

I recently reviewed, worked on, and added a similar example to the DATETIMEOFFSET Microsoft...

The Comprehensive Guide to Mastering Your SQL DBA Skills

By

Database administrators (DBAs) are the backbone of data-driven organizations. If you're looking to break...

Friday Basics: Authentication vs. Authorization

By

Another security fundamentals topic is authentication versus authorization. For those who have a clear...

Read the latest Blogs

Forums

The OS returned the error '(null)' while attempting 'DeleteFile' filestream.hdr

By lmarkum

I have a SQL Server 2019 Enterprise Edition on CU 25. It has in-memory...

Take Care

By Grant Fritchey

Comments posted to this topic are about the item Take Care

Performance

By LearningDBA

Experts, I am learning some skills so I can troubleshoot some performance-related issues. I...

Visit the forum

Question of the Day

Two Table Hints

What happens when I run this code:

SELECT
  p.ProductName
, p.ProductCategory
FROM dbo.Product AS p WITH (NOLOCK, TABLOCK);

See possible answers