Read Only
You can add the database in readonly mode by using below query. You can not add, update or delete any records once database is in read only mode.
ALTER DATABASE SQLDBPOOL set READ_ONLY
GO
READ_WRITE
You can set the database again in to Read/Write mode using below query.
ALTER DATABASE SQLDBPOOL SET READ_WRITE WITH NO_WAIT
GO
its not workin for me..
what error you are getting?
Thank you for you information
Small Correction: ALTER DATABASE XXX SET READ_WRITE WITH NO_WAIT
Thanks