I\'d like to drop a user in a SQL Server script but I\'ll need to test for existence first or I\'ll get script errors. When dropping tables or stored procs, I check the sys
In SQL 2005:
select * from sys.sysusers
In SQL 2000:
select * from sysusers