SQL SERVER – Quiz and Video – Introduction to SQL Server Security
Posted
by pinaldave
on SQL Authority
See other posts from SQL Authority
or by pinaldave
Published on Mon, 07 May 2012 01:30:25 +0000
Indexed on
2012/05/30
16:50 UTC
Read the original article
Hit count: 609
Joes 2 Pros
|PostADay
|sql
|SQL Authority
|SQL Query
|SQL Server
|SQL Tips and Tricks
|T SQL
|Technology
[Amazon] | [Flipkart] | [Kindle] | [IndiaPlaza]
This is follow up blog post of my earlier blog post on the same subject - SQL SERVER – Introduction to SQL Server Security – A Primer. In the article we discussed various basics terminology of the security. The article further covers following important concepts of security.
- Granting Permissions
- Denying Permissions
- Revoking Permissions
Above three are the most important concepts related to security and SQL Server. There are many more things one has to learn but without beginners fundamentals one can’t learn the advanced concepts. Let us have small quiz and check how many of you get the fundamentals right.
Quiz
1) If you granted Phil control to the server, but denied his ability to create databases, what would his effective permissions be?
- Phil can do everything.
- Phil can do nothing.
- Phil can do everything except create databases.
2) If you granted Phil control to the server and revoked his ability to create databases, what would his effective permissions be?
- Phil can do everything.
- Phil can do nothing.
- Phil can do everything except create databases.
3) You have a login named James who has Control Server permission. You want to elimintate his ability to create databases without affecting any other permissions. What SQL statement would you use?
- ALTER LOGIN James DISABLE
- DROP LOGIN James
- DENY CREATE DATABASE To James
- REVOKE CREATE DATABASE To James
- GRANT CREATE DATABASE To James
Now make sure that you write down all the answers on the piece of paper.
Watch following video and read earlier article over here. If you want to change the answer you still have chance.
Solution
1) 3
2) 1
3) 3
Now compare let us check the answers and compare your answers to following answers. I am very confident you will get them correct.
Available at
USA: Amazon
India: Flipkart | IndiaPlaza
Please leave your feedback in the comment area for the quiz and video. Did you know all the answers of the quiz?
Reference: Pinal Dave (http://blog.sqlauthority.com)
Filed under: Joes 2 Pros, PostADay, SQL, SQL Authority, SQL Query, SQL Server, SQL Tips and Tricks, T SQL, Technology
© SQL Authority or respective owner