vote up 1 vote down star

In spite of our vehement protests, our management has decided that the development team must be granted 'sa' rights on the development server. The catch is that we, the DB support group are still responsible for maintaining this box.

We have now been entrusted the task of coming up with a list of Dos and Don'ts for the development teams with these enhanced privileges.

Please add to this list:

DO -- confine activities to the DB under development

DO NOT --

  • change any SQL instance settings
  • sp_configure (including cmdshell)
  • add/change/delete any security settings
  • add/change/delete database objects
  • add/change/delete server objects like backup devices and linked servers
  • add/change/delete replication
  • add/change/delete maintenance plans
  • touch any database that doesn't belong to your team

Any pointers to tools available for tracking these users activities will be greatly appreciated.

flag

67% accept rate
What tasks do they need to do that requires higher level privilages of SA? – Irwin M. Fletcher Oct 23 at 18:56
I would think that db_owner would be all they need... – OMG Ponies Oct 23 at 19:01
2  
OK, if they're being advised to NOT "add/change/delete database objects", what are they supposed to do? Isn't the whole point of having a development box be that they can break it? – Stuart Ainsworth Oct 23 at 19:01
These are application developers. They need 'sa' privileges to be able to debug stored procedures in Dev Studio. The decision is already made by the management and they are unwilling to budge. We are trying to minimize the potential headache – Raj Oct 23 at 19:07

8 Answers

vote up 0 vote down

We require all database structure changes to be done with scripts (even on dev) and saved in subversion. Then on a set schedule we refresh dev from prod and they have to rerun their scripts to get back to where they were in the development cycle. This helps ensure that everything is done through scripts and that they have scripts ready when it's time for deployment.

I know in 2008 you can set up DDL Triggers to track database structural changes, can you do this in 2005? This way at least you can find out when someone changes a setting who did it and find out why.

link|flag
vote up 1 vote down

Its the dev server, not the DB support group server, or the production server. Keep a good backup/image and let the devs hack away. Letting DBA's control the devbox is like letting the tail wag the dog. Its there for developers to do developer work on. This involves breaking things sometimes and dropping tables, and then putting them back with different settings. Dev boxes are always going to be in a state of disrepair after awhile, that's what we do. If we don't know where a problem is occurring, we try different things out. Some of them are easy to undo, some not so much.

link|flag
vote up 2 vote down

If it's the DEVELOPMENT server, what's the problem with the DEVELOPERS being able to have full access? Telling developers that you can't add/remove/change database objects (eg: tables, columns, indexes) is like telling them "You can have a compiler, but you aren't allowed to run it". It would seem to me that the developers want/need access to their own database instance specifically to allow them to test different methods of solving problems WITHOUT having to muck with the PRODUCTION or TEST databases. You should be encouraging that sort of behavior, not discouraging it.

Some might suggest that developers work with local instances of SQL Express, but while SQL Express for each developer can solve certain problems, it has different limitations and performance characteristics than full SQL Server on a separate server.

What you SHOULD do is institute a regular backup schedule (at least nightly) and work with the developers to ensure that they know how to initiate unscheduled backups, and restore from backups, so that downtime is minimized in the event of problems.

link|flag
Your analogy is completely wrong. What happens is they muck around and then whinge when they can't migrate their mucking around to locked down servers. I'm a developer DBA of course :-) – gbn Oct 23 at 19:28
Then a little education is in order. I'm a developer whose been a DBA all too frequently. With a foot in both worlds, it's usually been my job to teach both sides to coexist. After all, it's the USERs who are the enemy, not the DBAs or Developers... – W. Craig Trader Oct 23 at 20:05
There's also things like maintenance plans that they shouldn't have access to. – Joel Coehoorn Oct 23 at 20:17
Put another way: when he says "database objects" in his question, he's not talking about tables or columns or stored procedures. He's talking about user logins. And maintenance plans. And profile traces. Jobs. Maybe indexes, depending on where you draw the line. These are things that the dev side shouldn't touch. – Joel Coehoorn Oct 23 at 20:19
1  
That's ridiculous. Each development group should have their own server, so that no one steps on anyone elses toes. Hardware these days is practically free, and software almost as cheap as hardware. And if your organization is large enough to have multiple development groups, it should be using server virtualization, which would make all of this even easier. – W. Craig Trader Oct 23 at 20:52
show 1 more comment
vote up 3 vote down

It says here (MSDN) you need sysadmin (sa) to debug on SQL Server 2005.

However, this SO question shows another way without sa , which is what I thought initially. Simply allow them to run sp_sidedebug

I'd also suggest giving them local SQL Express which also solves other issues...

(edited with more info)

Edit, after W. Craig Trader's answer

Other issues with "sa" rights, in the worst case:

  • developers will create untrusted CLR assemblies
  • they will use xp_cmdshell
  • all actions are in the context of the sql server service account
  • they will assume sa rights for the client connection
  • etc etc

eg xp_cmdshell 'scm -Action 6 -Server PRODSERVER'

link|flag
vote up 0 vote down

On suggestion I have is to set up Policy-Based Management and enforce all your 'do' and 'don't' as policy rules. This would go a long way to protect the instance.

I would also deploy DDL change auditing, see Auditing in SQL Server 2008, not so much as a deterrent, but mostly as a change tracking system so when something is screwed, at least you'll know what changed.

link|flag
vote up 5 vote down

If it's not too late, one compromise option that I've seen work well is rather than upgrade the permissions or replacing the developers' existing accounts, create a separate account that is only used when they need the elevated permissions.

So normally they work under individual "restricted" accounts (which I use loosely because these restricted accounts still need some hefty permissions — ie create, drop, alter for tables). But for that rare occasion when they think they need sa, they can log in using this account. Then you can flag the account in your logs and do extra monitoring on it. You've given the developers the access they asked for, but in a way that's a little more controllable.

Eventually, if there's abuse, the logs on this account can be used as evidence to take it away.

link|flag
+1: Excellent alternative approach! – John Sansom Oct 23 at 19:16
vote up 0 vote down

SQL Server Auditing is what you want, but, if you will do all the database object creation for them, why do devs need sa?

http://msdn.microsoft.com/en-us/library/cc280526.aspx

link|flag
vote up 1 vote down

I do not think that they need SA privileges on the Development box. In almost all cases, they can do without.

I think a good option is to have local dev edition installed.

question:

You do not want developers to add/change/delete database objects?!! How are they going to develop?

link|flag
Sorry about the confusion. What I meant by that bullet point was that developers must not change database settings or drop databases. – Raj Oct 23 at 19:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.