vote up 1 vote down star
1

I need to disable some user accounts within a sql server version 2000. the following sql command is giving me an " incorrect syntax near 'Login' " error. The user name is valid and spelled correctly so I'm wondering if the command syntax is different for version 2000.

ALTER LOGIN exampleuser DISABLE
flag

2 Answers

vote up 5 vote down check

SQL Server 2000 doesn't have the ALTER LOGIN statement. So to be able to disable the login you'll have to call the sp_denylogin procedure instead.

EXEC sp_denylogin 'exampleuser'

or

EXEC sp_revokelogin 'exampleuser'

To give them back access again you should use

EXEC sp_grantlogin 'exampleuser'

Note: sp_denylogin, sp_revokelogin and sp_grantlogin only works on Windows accounts and groups.

To be able to deny pure SQL Server logins, it seems like the only option is to remove that login completely with

EXEC sp_droplogin 'exampleuser'

but to enable it again, it needs to be re-created with

EXEC sp_addlogin 'exampleuser', 'examplepassword'

or just remove that logins access to the current database with

EXEC sp_revokedbaccess 'exampleuser'
link|flag
Do you know what the command is to enable the account after it's been disabled? – MG Mar 10 at 12:25
Is this method only valid for Windows NT user or groups? – MG Mar 10 at 12:30
To be honest. I'm not entirely sure. They should apply to both SQL Server logins and Windows NT users. – Jimmy Stenke Mar 10 at 12:34
This command fails when i try to use it on a non winders nt user :( msg: windows nt user or group 'exampleuser' not found. check the name again. – MG Mar 10 at 12:38
hmm, ok, that I didn't know. Then I think the only option you can do is use the sp_droplogin procedure and remove the user login completely – Jimmy Stenke Mar 10 at 12:53
show 2 more comments
vote up 1 vote down

sp_revokelogin will remove the login entry. However , this proc has been deprecated in favour of drop login

But note that both of these will not disable the user but delete the login.

Your ALTER LOGIN approach is correct

ALTER LOGIN exampleuser DISABLE;

works with sql server 2008 atleast.

link|flag
In SQL Server 2000 it is not deprecated, instead the only way to do it. CREATE LOGIN, ALTER LOGIN and DROP LOGIN was introduced in 2005 – Jimmy Stenke Mar 10 at 12:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.