CREATE ROLE db_executor
GO
GRANT EXECUTE TO db_executor
GO
EXEC sp_addrolemember 'db_executor','User or Group'
Wednesday, October 25, 2017
db_executer
SQL Server comes with several predefined database roles which fit the needs of most day to day user needs. A big miss that I have found is the ability to execute stored procedures. Developers need the right to execute the SPs they are creating in the DEV and QA environment. Many service accounts also need execute rights. All that needs done is to create the Role, grant execute rights, and add members to a role.
Wednesday, October 11, 2017
TDE - Transparent Data Encryption
Transparent Data Encryption (TDE) is a method of encrypting the database, data files and log files on the physical disk. TDE is also known as encrypting data at rest. TDE does real time encryption and decryption between the disk and memory. We will be using the same Key Hierarchy and process as discussed in SQL SERVER Column Encryption. We have one additional step, the encryption of the database itself, shown below.
Subscribe to:
Posts (Atom)