This is a discussion on Users cannot view stored procedure text within the SQL Server forums, part of the Microsoft SQL Server category; --> In SQL 2005 (we use Enterprise 64-bit SP2), the users cannot see the text of the stored procedures, functions, ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| In SQL 2005 (we use Enterprise 64-bit SP2), the users cannot see the text of the stored procedures, functions, etc. This is a production database, so I cannot give them rights to modify them, but they need to be able to see what the procs are doing. I didn't have this problem in 2000 - how can I adjust the privileges to allow them to view the contents of the Programmability objects? thanks for any insight!! Tracy |
| |||
| traceable1 (tracykc@gmail.com) writes: > In SQL 2005 (we use Enterprise 64-bit SP2), the users cannot see the > text of the stored procedures, functions, etc. > > This is a production database, so I cannot give them rights to modify > them, but they need to be able to see what the procs are doing. > > I didn't have this problem in 2000 - how can I adjust the privileges > to allow them to view the contents of the Programmability objects? You need to grant them VIEW DEFINITION on the procedures. To make it simpler you grant them this permission on the schema: GRANT VIEW DEFINITION ON SCHENA::dbo TO someuser In SQL 2005, you don't have permissions to see system objects in the same way you had in SQL 2000. -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/pro...ads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinf...ons/books.mspx |
| ||||
| Excellent! Gonig back to the Oracle way of doing things, eh? I will try it - thank you so much! On Apr 4, 5:23 pm, Erland Sommarskog <esq...@sommarskog.se> wrote: > traceable1 (trac...@gmail.com) writes: > > In SQL 2005 (we use Enterprise 64-bit SP2), the users cannot see the > > text of the stored procedures, functions, etc. > > > This is a production database, so I cannot give them rights to modify > > them, but they need to be able to see what the procs are doing. > > > I didn't have this problem in 2000 - how can I adjust the privileges > > to allow them to view the contents of the Programmability objects? > > You need to grant them VIEW DEFINITION on the procedures. To make it > simpler you grant them this permission on the schema: > > GRANT VIEW DEFINITION ON SCHENA::dbo TO someuser > > In SQL 2005, you don't have permissions to see system objects in the same > way you had in SQL 2000. > > -- > Erland Sommarskog, SQL Server MVP, esq...@sommarskog.se > > Books Online for SQL Server 2005 athttp://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books... > Books Online for SQL Server 2000 athttp://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |