December 2017
Intermediate to advanced
434 pages
10h 14m
English
Another option for controlling authorization on the server level is the server permissions. Server permissions can be assigned to your logins via TSQL or the Management Studio to allow the login to perform a specific operation. The list of permissions available on the server is quite long and you can find the whole list via the following query:
SELECT * FROM sys.fn_builtin_permissions('') where class_desc = 'SERVER'
Server permissions that you can grant are as follows:
| ADMINISTER BULK OPERATIONS | Allows the user to bulk insert data into the SQL Server via the bcp.exe tool, BULK INSERT statement, and OPENROWSET(BULK) statement |
| ALTER ANY AVAILABILITY GROUP | Right to failover any availability group, ... |
Read now
Unlock full access