Skip Navigation

Database server changes

Microsoft SQL Server
 2016 supports TLS 1.2 out-of-the-box and no further update is needed. If you have 
Microsoft SQL Server
 2012 or 2014 installed, go to the following URL to install and update your software to support TLS 1.2:
Verify the database connection encryption state. Run the following SQL as a system administrator to view the SQL connections state. The encrypt_option column should display TRUE for all records:
select encrypt_option, count(*) FROM sys.dm_exec_connections group by encrypt_option go SELECT * FROM sys.dm_exec_connections order by connect_time desc go