Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to give create Stored permissions on a DB?

Status
Not open for further replies.

SteveMe

MIS
Aug 30, 2002
83
US
Please advise? Thanks
 
Using the GRANT command.
Code:
Use Database
go
grant create procedure to UserName
go

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
I did that even gave them the dbo role and no luck
 
If you are a member of the db_owner role then you can create procedures, there is no way to revoke rights from a member of the db_owner role. Make sure that the user is in the correct database.

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top