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.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 dropping single user mode database

Author  Topic 

rajasekhar857
Constraint Violating Yak Guru

396 Posts

Posted - 2009-08-25 : 02:13:50
Hi,
iam having one database which is in single user mode. now i don't want that can i directly give delete on that to drop it from sql server 2005 or is there any other procedure.because i am not sure if i delete direcly it effects any other databases?please suggest me.

senthil_nagore
Master Smack Fu Yak Hacker

1007 Posts

Posted - 2009-08-25 : 02:22:49
alter table to multiple user and drop

ALTER DATABASE [Works] SET MULTI_USER WITH NO_WAIT

else

login to the SA and drop the db

Both does't affect other DBs

Senthil.C
------------------------------------------------------
[Microsoft][ODBC SQL Server Driver]Operation canceled

http://senthilnagore.blogspot.com/
Go to Top of Page

lionofdezert
Aged Yak Warrior

885 Posts

Posted - 2009-08-25 : 02:23:47
Why it should effect other databases ? Nothing will happen to other databases. You can drop a database which is no more required.
Go to Top of Page

Peter99
Constraint Violating Yak Guru

498 Posts

Posted - 2009-08-25 : 16:41:32
If you drop one database, that will not affect other databases.
Go to Top of Page
   

- Advertisement -