How to create a Database Role to Allow Users to alter only a particular stored procedure in a db in SQL Server 2000 -
there no built in database role allows kind of access. db_datareader
wouldn’t allow user see stored procedures or functions @ all. ddladmin
database role provide access see objects, change them well, not intent here. accomplish desired result of type of request requires new database role created?
how give full access on particular stored procedure in sql server 2000? example have stored procedure called sp_prg1
in database db1
. need give full access on sp_prg1
(which include altering stored procedure) user.
how give alter permissions 1 stored procedure grant alter on [db].[dbo].[storedprocedure1] singleobjectrole not working
Comments
Post a Comment