Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
qman
Constraint Violating Yak Guru
442 Posts |
Posted - 2010-02-26 : 08:49:13
|
What needs to be enabled to allow a public user to be able to create a Stored Procedure. I tried DB_DATAWRITER but that did not do the trick. |
|
qman
Constraint Violating Yak Guru
442 Posts |
Posted - 2010-02-26 : 09:52:36
|
Forget it, found it.....db_ddladmin |
 |
|
Jaime
Starting Member
19 Posts |
Posted - 2010-02-26 : 23:25:13
|
quote: Originally posted by qman Forget it, found it.....db_ddladmin
Careful, you just granted everybody the rights to modify just about everything. Grant them the CREATE PROCEDURE permission at the database level and it will do what you want. |
 |
|
qman
Constraint Violating Yak Guru
442 Posts |
Posted - 2010-03-01 : 07:27:28
|
Scary, good point.....! "CREATE PROCEDURE" sounds much better. :) |
 |
|
qman
Constraint Violating Yak Guru
442 Posts |
Posted - 2010-03-01 : 07:44:56
|
From the DB Level, I do not see where to set CREATE PROCEDURE. |
 |
|
qman
Constraint Violating Yak Guru
442 Posts |
Posted - 2010-03-01 : 12:44:27
|
Found it, thanks.... |
 |
|
|
|
|