Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
mimei
Starting Member
3 Posts |
Posted - 2005-09-15 : 07:13:37
|
| HiI need to detach a Database, but with "EXEC sp_detach_db 'test','false'" I can't do this because it is in use.Is there a Possibility to make a "force detach" or something?Thanks for HelpGreets |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2005-09-15 : 07:25:22
|
run this to put the db into a single user modealter database myDB set single_user with rollback immediatethen you can detach itGo with the flow & have fun! Else fight the flow |
 |
|
|
|
|
|