Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Give Rights to KILL process to non SA Users

Status
Not open for further replies.

pgthyagu

Technical User
May 27, 2002
9
IN
Hi

Is it possible to give the right to execute KILL command to ordinary user. The User should be able to kill only his own processes. The User should not be added to any Server Roles.

Is there any WorkAround ?

Thanks
Thiagu

 
In SQL 2000, KILL permissions default to the members of the sysadmin and processadmin fixed database roles, and are not transferable. You can assign a user to the processadmin fixed server role. Note: They can then kill all user processes.

Example:
sp_addrolmember 'pgthyagu', 'processadmin'

In SQL 7, KILL permissions default to the members of the sysadmin fixed database roles, and are not transferable. You cannot allow users to kill processes without making them administrators.

Personally, I don't believe users should have this capability. The potential for problems and abuse is too great. DBAs should handle the job of monitoring servers and controlling processes. Terry L. Broadbent - DBA
Computing Links:
faq183-874 contains "Suggestions for Getting Quick and Appropriate Answers" to your questions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top