I don't think you can put a dataserver into single-user mode. If you mean to put a database into single-user mode you use the sp_dboption command, like so...
USE master
go
EXEC sp_dboption 'your_db_name','single user',true
go
USE your_db_name
go
CHECKPOINT
go
whrere 'your_db_name' is the name of the database. I think you need to make sure that you are using a privileged account (like sa) and that there is no one else connected to the database.
Hope that helps.
~Chuck