Re: Windows Services Groups
- From: "DB2DOTNETCZAR via SQLMonster.com" <u16527@uwe>
- Date: Mon, 25 Sep 2006 15:59:44 GMT
Hari,
I have copied the content for your convenience.
************************************************************************************************************************
sp_denylogin (T-SQL)
Prevents a Microsoft® Windows NT® user or group from connecting to Microsoft
SQL Server™.
Syntax
sp_denylogin [@loginame =] 'login'
Arguments
[@loginame =] 'login'
Is the name of the Windows NT user or group. login is sysname, with no
default. If the Windows NT user or group does not exist in SQL Server, it is
automatically added.
Return Code Values
0 (success) or 1 (failure)
Remarks
sp_denylogin can be used only with Windows NT accounts in the form Domain\
User, for example London\Joeb. sp_denylogin cannot be used with SQL Server
logins added with sp_addlogin.
Use sp_grantlogin to reverse the effects of sp_denylogin and allow the user
to connect.
sp_denylogin cannot be executed within a user-defined transaction.
Permissions
Only members of the securityadmin or sysadmin fixed server roles can execute
sp_denylogin.
Examples
This example prevents user Corporate\GeorgeW from logging in to SQL Server.
EXEC sp_denylogin 'Corporate\GeorgeW'
Or
EXEC sp_denylogin [Corporate\GeorgeW]
*************************************************************************************************************
Hope this helps :)
--
Best Regards
Anil Mahadev
http://anilm001.myfreewebs.net/index2.php
http://www.db2india.org
Message posted via SQLMonster.com
http://www.sqlmonster.com/Uwe/Forums.aspx/sql-server-security/200609/1
.
- Follow-Ups:
- Re: Windows Services Groups
- From: Hari Seldon
- Re: Windows Services Groups
- References:
- Re: Windows Services Groups
- From: DB2DOTNETCZAR via SQLMonster.com
- Re: Windows Services Groups
- Prev by Date: Re: Windows Services Groups
- Next by Date: Re: Server user 'ABC' is not a valid user in database 'msdb
- Previous by thread: Re: Windows Services Groups
- Next by thread: Re: Windows Services Groups
- Index(es):
Relevant Pages
|
|