November 26, 2008 at 5:26 am
I am looking at one SQL 2005 DB and trying to understand the security implemented.
I can see a role having permission to execute certain stored procedure. The role includes one user.
I cannot see any permission details at table levels like "Select, insert2 permission (like SQL 2000).
Is the table level permission not required in SQL 2005. Say for ex. in above mentioned case the stored procedure is referring to table (may be select,insert into some table)
Where can I see the table level permission
November 26, 2008 at 7:17 am
November 26, 2008 at 8:53 am
The same permissions from SQL 2000 exist in SQL 2005.
I'm not sure what you mean by not seeing them. Are you not finding this in SSMS?
Moved to the security forum.
November 26, 2008 at 9:56 am
Please don't cross post. It just wastes people's time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic608988-359-1.aspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 26, 2008 at 10:26 am
this post is under security topics. Yes, I am using SSMS to view the security
November 26, 2008 at 10:33 am
ritesh.saluja (11/26/2008)
I can see a role having permission to execute certain stored procedure. The role includes one user.I cannot see any permission details at table levels like "Select, insert2 permission (like SQL 2000).
Is the table level permission not required in SQL 2005. Say for ex. in above mentioned case the stored procedure is referring to table (may be select,insert into some table)
You'll only see the permissions that have been set for objects, not implied permissions. In your example, if a role or user has EXECUTE permission on a stored procedure that does a DML operation on a table, the role or user doesn't need table level permissions.
This hasn't changed since SQL 7.0.
Greg
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply