Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的在线数据库中,我将数据库置于离线状态并关闭 SQL Server。
现在我的数据库显示错误
登录失败
但登录 ID 和密码正确,无法连接到数据库
请帮我重新连接,我使用的是 SQL Server 2005。
当数据库处于脱机状态时,您将无法连接到数据库本身,但应该仍然能够连接到主数据库。关于您如何尝试访问它的问题尚不清楚,但例如:
USE [master] GO ALTER DATABASE [MyDB] SET ONLINE GO
或者从 SQL Server Management Studio 中,您仍然应该能够连接到数据库服务器本身并在主数据库的上下文中执行第二个命令。