Roman Rehak

SQL Server and things not related

<November 2008>
SuMoTuWeThFrSa
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456


Navigation

SQL Server Sites

Subscriptions

News

eXTReMe Tracker

Post Categories



Monday, December 06, 2004 - Posts

SQL Server 2005 webcasts

I went to register for the webcasts and something seems to be wrong with the webcast page. I browse to http://msdn.microsoft.com/SQL/2005Webcasts/default.aspx and it keeps redirecting me to http://msdn.microsoft.com/vstudio/support. I was finally able to register using the direct registration links from Kent's blog (thanks Kent).

Registration is closed on the first webcast, there goes the T-shirt...

posted Monday, December 06, 2004 8:00 AM by Roman with 0 Comments

Roman's Weekly SQL Server Tip - Keeping Administrators out of SQL Server

This tip comes from a customer support incident I worked on this week. The requirement was to lock down SQL Server to prevent regular domain administrators from looking at the data. You may run into a similar scenario where you need to secure SQL Server as tightly as possible and keep away even the groups of people that are involved in network administration and troubleshooting. For example, if a SQL Server database contains employee salary information or other sensitive data, it's probably not desirable to allow anybody with admin privileges on the SQL Server machine to be able to browse the data. The problem is that by default it's possible. SQL Server sets up a login called BUILTIN\Administrators. This account grants sysadmin privileges to local administrators. On many networks the local Administrators group also contains the Domain Admins group, so all members of these groups can do whatever they please in all databases.

You can follow these steps to prevent this:

- Create a Windows group for SQL Server administrators only (domain or local)
- Add only accounts that should be allowed unlimited access to one or more SQL Servers
- Create a new login for the SQL admin group, grant the group sysadmin privileges
- Delete the BUILTIN\Administrators login

If you have a SQL Server cluster, you should first read the How to impede Windows NT administrators from administering a clustered instance of SQL Server article in the KB.

posted Monday, December 06, 2004 6:05 AM by Roman




Powered by Dot Net Junkies, by Telligent Systems