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 |
learntsql
524 Posts |
Posted - 2009-12-07 : 06:20:24
|
I just created database and i brought it to offline and when i try to bring online it's giving following error.Database 'Test' cannot be opened because it is offline.ALTER DATABASE statement failed.How to bring online. |
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-12-07 : 06:24:26
|
HiALTER DATABASE [Test] SET ONLINE-------------------------R... |
 |
|
learntsql
524 Posts |
Posted - 2009-12-07 : 06:29:05
|
Saying as follows...Msg 942, Level 14, State 4, Line 1Database 'Test' cannot be opened because it is offline.Msg 5069, Level 16, State 1, Line 1ALTER DATABASE statement failed. |
 |
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-12-07 : 07:05:14
|
HiI think u tried the same database. Try below codeUSE masterGOALTER DATABASE [Test] SET ONLINE-------------------------R... |
 |
|
learntsql
524 Posts |
Posted - 2009-12-07 : 07:07:30
|
Still same error.. |
 |
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-12-07 : 07:19:30
|
HiUSE MASTER;GOSP_DBOPTION 'TEST','OFFLINE','FALSE' -------------------------R... |
 |
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-12-07 : 07:21:34
|
HiBelow Query for Database Make offlineUSE MASTER;GOSP_DBOPTION 'Test','OFFLINE','TRUE' Make it OnlineUSE MASTER;GOSP_DBOPTION 'Test','OFFLINE','False' -------------------------R... |
 |
|
learntsql
524 Posts |
Posted - 2009-12-07 : 07:32:08
|
Thank you for your reply but still giving asMsg 942, Level 14, State 4, Line 1Database 'Test' cannot be opened because it is offline.Msg 5069, Level 16, State 1, Line 1ALTER DATABASE statement failed.sp_dboption command failed.I am using SQL server 2005 RTM version. |
 |
|
GilaMonster
Master Smack Fu Yak Hacker
4507 Posts |
Posted - 2009-12-07 : 09:24:10
|
Open the SQL error log, see what errors there are relating to this database. We need to know why it won't come online to help you further--Gail ShawSQL Server MVP |
 |
|
|
|
|
|
|