David
will give Nisse EXECUTE permissions on all stored procedures in the
database, including future procedures.
You can also say:
GRANT EXECUTE ON SCHEMA::sch TO Nisse
to restrict this permission to apply only withing a certain schema.
--
Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se
Links for SQL Server Books Online:
SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx
SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx
SQL 2000: http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
GRANT EXECUTE ON DATABASE :: databasename TO public;
-- or --
GRANT EXECUTE ON SCHEMA :: dbo TO public;
RLF
"Russell Fields" <Russel...@nomail.com> wrote in message
news:umAFWwMh...@TK2MSFTNGP04.phx.gbl...
David
"Erland Sommarskog" <esq...@sommarskog.se> wrote in message
news:Xns9CEBCD83F...@127.0.0.1...