1、清除管理员和指定用户的密码:
sp_password null,'','<username>'
2、修改数据库最大允许接入的用户数:
sp_configure 'show advanced option','1'
reconfigure
go
sp_configure 'user connections',0
reconfigure
go
3、SQLSERVER2000安装无需重启的方法:
在HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SessionManager
中找到PendingFileRenameOperations项目,并删除它。这样就可以清除安装暂挂项目。