【问题标题】:Transparent Data Encryption for Large DataBase大型数据库的透明数据加密
【发布时间】:2018-05-09 10:53:05
【问题描述】:

我正在为我的应用程序使用大型数据库,并且我已使用 TDE 方法对数据库进行了加密。加密需要更多时间。大型数据库需要加密多长时间?我们可以在加密过程中访问数据库以插入/检索数据吗?

【问题讨论】:

  • 这个问题太宽泛了。考虑提供minimal reproducible example
  • 是什么让您认为加密需要更多时间?如果您遇到性能问题,则需要找出问题的真正原因。

标签: sql encryption tde


【解决方案1】:

您可以使用此查询来衡量加密所需的时间:

declare @pct float;
select @pct = e.percent_complete from sys.dm_database_encryption_keys e, 
    sys.databases d where e.database_id = d.database_id and d.name = 'mydb';
select @pct 'percent';

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-01-14
    • 1970-01-01
    • 2016-03-04
    • 2017-02-18
    • 1970-01-01
    相关资源
    最近更新 更多