Skip to content

Latest commit

 

History

History
66 lines (53 loc) · 3.95 KB

File metadata and controls

66 lines (53 loc) · 3.95 KB
title common criteria compliance enabled Server Configuration Option | Microsoft Docs
ms.custom
ms.date 03/02/2017
ms.prod sql
ms.prod_service high-availability
ms.reviewer
ms.suite sql
ms.technology configuration
ms.tgt_pltfrm
ms.topic conceptual
f1_keywords
common criteria compliance
helpviewer_keywords
CC (common criteria) [Database Engine]
common criteria compliance [Database Engine]
Risidual Information Protection [Database Engine]
RIP (Residual Information Protection)
ms.assetid 61766eea-c450-408d-af33-fbe7ef8c9ff2
caps.latest.revision 24
author MikeRayMSFT
ms.author mikeray
manager craigg

common criteria compliance enabled Server Configuration Option

[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md]

The common criteria compliance enabled option enables the following elements that are required for the Common Criteria.

Criteria Description
Residual Information Protection (RIP) RIP requires a memory allocation to be overwritten with a known pattern of bits before memory is reallocated to a new resource. Meeting the RIP standard can contribute to improved security; however, overwriting the memory allocation can slow performance. After the common criteria compliance enabled option is enabled, the overwriting occurs.
The ability to view login statistics After the common criteria compliance enabled option is enabled, login auditing is enabled. Each time a user successfully logs in to [!INCLUDEssNoVersion], information about the last successful login time, the last unsuccessful login time, and the number of attempts between the last successful and current login times is made available. These login statistics can be viewed by querying the sys.dm_exec_sessions dynamic management view.
That column GRANT should not override table DENY After the common criteria compliance enabled option is enabled, a table-level DENY takes precedence over a column-level GRANT. When the option is not enabled, a column-level GRANT takes precedence over a table-level DENY.

The common criteria compliance enabled option is an advanced option. Common criteria is only evaluated and certified for the Enterprise edition and Datacenter edition. For the latest status of common criteria certification, see the Microsoft SQL Server Common Criteria Web site.

Important

In addition to enabling the common criteria compliance enabled option, you also must download and run a script that finishes configuring [!INCLUDEssNoVersion] to comply with Common Criteria Evaluation Assurance Level 4+ (EAL4+). You can download this script from the Microsoft SQL Server Common Criteria Web site.

If you are using the sp_configure system stored procedure to change the setting, you can change common criteria compliance enabled only when show advanced options is set to 1. The setting takes effect after the server is restarted. The possible values are 0 and 1:

  • 0 indicates that common criteria compliance is not enabled. This is the default.

  • 1 indicates that common criteria compliance is enabled.

Examples

The following example enables common criteria compliance.

sp_configure 'show advanced options', 1;  
GO  
RECONFIGURE;  
GO  
sp_configure 'common criteria compliance enabled', 1;  
GO  
RECONFIGURE WITH OVERRIDE; 
GO  

Restart [!INCLUDEssNoVersion_md].

See Also

Server Configuration Options (SQL Server)