| |

How can I make database to be read only?
Answer:
To make database to be read only, you can use the Enterprise Manager
or the sp_dboption system stored procedure.
For example, to make the pubs database to be read only, you can use
the following statement:
EXEC sp_dboption 'pubs', 'read only', 'TRUE'
Read SQL BOL to get more information about the sp_dboption system
stored procedure.
|
|