June 22, 2012 at 1:04 am
Hi
In My Organization we are planned to imlement a role based security.I created a one role . Role name is called "Developer".Under this role i created two users.I use follwing Statement.
Step 1 : Create the Role
CREATE ROLE [Evaluationrole]
Step 2:
GRANT insert to Evaluationrole
GRANT update to Evaluationrole
GRANT delete to Evaluationrole
Step 3:
Grant create stored Procedure to Evaluationrole
GRANT EXECUTE TO Evaluationrole
GRANT VIEW DEFINITION TO Evaluationrole
Step 4:
USE [master]
GO
CREATE LOGIN [dvsuser] WITH PASSWORD=N'dvsuser', DEFAULT_DATABASE=[master], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF
GO
Step 5 :
CREATE USER [dvsuser] FOR LOGIN [dvsuser]
EXEC sp_addrolemember N'Evaluationrole', N'dvsuser'
Here in this user Create stored Procedure and execute the stored procedure every thisk working file. but I am facing Problem in Trigger. For Example Any table I am having "Delete" trigger means, that time that table records not allow to delete the records. I am facing follwing Error
The user does not have permission to perform this action.
Please Give me a solution . I want this user execute the trigger also.
Thank You...
June 22, 2012 at 1:41 am
Please don't cross post. It just wastes peoples time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic1319084-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
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply