Hi Mike,
This message is output if you try to use a database that has been shutdown using the
dbcc dbreboot("shutdown", <dbname>) command. This shutdown state will persist across reboots of ASE.
To resolve it, run
dbcc dbreboot("reboot", <dbname>)
Example:
1> set switch on 3604
2> go
Switch 3604 ('print_output_to_client') is turned on.
All supplied switches are successfully turned on.
1> dbcc dbreboot('shutdown', test)
2> go
---------- Shutting Down Database 'test' ----------
---------- Operation on Database 'test' Completed Successfully ----------
1> use test
2> go
Database test with dbid 6 is already shut down.
1> dbcc dbreboot("reboot", test)
2> go
---------- Shutting Down Database 'test' ----------
---------- Re-starting Database 'test' With Recovery ----------
Recovering database 'test'.
Started estimating recovery log boundaries for database 'test'.
Database 'test', checkpoint=(1093, 10), first=(1093, 10), last=(1093, 10).
Completed estimating recovery log boundaries for database 'test'.
Started ANALYSIS pass for database 'test'.
Completed ANALYSIS pass for database 'test'.
Started REDO pass for database 'test'. The total number of log records to
process is 1.
Completed REDO pass for database 'test'.
Recovery of database 'test' will undo incomplete nested top actions.
Started filling free space info for database 'test'.
Completed filling free space info for database 'test'.
Started cleaning up the default data cache for database 'test'.
Completed cleaning up the default data cache for database 'test'.
Recovery complete.
Database 'test' is now online.
---------- Operation on Database 'test' Completed Successfully ----------