Here is one way to take a database offline. This will prevent any reads, writes or even a connection to it (including any objects within it):
1 2 3 4 5 |
USE master; GO ALTER DATABASE MyDatabase SET OFFLINE WITH ROLLBACK IMMEDIATE; GO |
You should get these results below in your output window:
Views – 2425