LiteSpeed console shows databases as offline.
Applied Microsoft updates to the server and 7 databases are in shutdown mode.
Error 945 Database cannot be opened due to inaccessible files or insufficient memory or disk space. See the SQL Server error log for details
Contact Microsoft support. In this case, databases may need to be detached and reattached.
The status is in the SQL Server sysdatabases table. The LiteSpeed GUI for the Enterprise Console is reading the table.
use master
go
select name, status from sysdatabases
OR
SELECT DATABASEPROPERTYEX('AdventureWorks', 'Status')
DatabaseStatus_DATABASEPROPERTYEX
GO
SELECT state_desc DatabaseStatus_sysDatabase
FROM sys.databases
WHERE name = 'AdventureWorks'
GO
Refer to Solution 40824 for more information.
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center