Secure SQL Server
-
-
-
Access management
Manage logins, users, and schemas.
-
Always Encrypted
Allows clients to encrypt sensitive data inside client applications and never reveal keys to the database engine.
-
Dynamic data masking
Limits sensitive data exposure by masking it to non-privileged users.
-
Permissions
Dictate who has permission to access what within your SQL Server.
-
Row level security
Enables control access to rows in a database table based on the characteristics of the user executing the query.
-
Secure Socket Layer (SSL)
Encryptes data in-flight.
-
Transparent Data Encryption (TDE)
Encrypts data at rest on disk.
-
-