First of all, change the current connection. You yourself must be out of the db, e.g. use tempdb.
To see who is on: exec sp_who2
Look through the list of users using the db and if you need to kill any connection, kill <spid>, where spid is listed in the result of sp_who2
kill 102
kill 89
etc