I ran into the following issue when I first installed SQL Server 2008 on my dev machine a while back.
I spent a lot of time searching for a fix but kept coming across unrelated posts. I did finally come across a blog entry that covered the resolution but I can’t seem to find it again. Anyhow, I vaguely remembered some of the steps and finally worked through it again. So I thought I’d reproduce it here in case anyone else has the same issue (If I can find the original blog post I’ll link back to it).
The fix is actually pretty simple but to be honest I’m not a SQL guy so explaining why has to be left for those that are more familiar with the tools.
- Open Microsoft SQL Server Management Studio
- Open a connection to the server in question. You may get the error immediately…or after a few seconds. Just ignore it and continue these instructions.
- Make sure the Object Explorer Details view is open (F7).
- Expand the root connection node and select the Databases
node.
- You should definitely see the error now if you haven’t already. In
the Object Explorer Details view you should not see an empty table
including the columns Name, Policy Health State, Recovery Model,
Compatibility Level, Collation
and Owner. The Collation
column is the key.
- Right click on the table header and unselect Collation .
- Select Refresh. This time the databases are listed correctly.
相关推荐
例如,对于Microsoft JDBC Driver,URL格式可能为:"jdbc:sqlserver://<服务器>:<端口>;databaseName=<数据库名>";对于jTDS,URL可能是:"jdbc:jtds:sqlserver://<服务器>:<端口>/<数据库名>"。记得替换掉尖括号内...
SQL Server和SQL Server Agent服务在Windows事件日志中分别以"MSSQLSERVER"和"SQLSERVERAGENT"作为来源,提供了一定程度的错误和信息记录。 - **SQL Server错误日志**:SQL Server的错误日志与Windows事件日志类似...
sqlserver 各种驱动下载网址,kettel 7.1 sqlserver 2008 native 驱动下载(sqljdbc4-2.0.jar),解决Driver class 'com.microsoft.sqlserver.jdbc.SQLServerDriver' could not be found, make sure the 'MS SQL ...
MS SQL Server 7是微软公司推出的数据库管理系统,它在数据库管理、数据存储和查询处理方面提供了强大的功能。系统存储过程是SQL Server中的一个重要组成部分,它们是由数据库系统预先定义并存储在master数据库中的...
[http60-Processor1][org.hibernate.util.JDBCExceptionReporter][ERROR] - [Microsoft][SQLServer2000DriverforJDBC] Broken pipe ``` 这些异常通常意味着数据库连接被意外关闭或者重置了。 #### 三、配置详解 ...
当从命令提示符下启动 SQLServer 时,可使用该选项缩短启动 SQL Server 的时间。(注意:当使用该选项时,无法通过使用 SQLServer 服务管理器或 net stop 命令停止 SQL Server,而且如果已从 Microsoft Windows NT? ...
在VC++(Visual C++)开发环境中,与SQL Server数据库进行交互是常见的需求,这主要通过数据访问对象(ADO)技术实现。ADO是Microsoft提供的一个高效、轻量级的数据库访问接口,允许开发者以编程方式执行SQL语句,...
在本文中,我们将深入探讨如何使用Visual C++ 6.0(简称VC6.0)连接到SQL Server数据库。这是一个非常实用的技术,特别是在开发需要与数据库进行交互的Windows应用程序时。VC6.0是一个经典的集成开发环境(IDE),...
22. **@@SERVICENAME**:表明SQL Server正在运行的服务模式,比如MS SQLServer、MSDTC或SQLServerAgent。 23. **@@SPID**:返回当前会话的服务器进程ID,对于跟踪和解决问题很有帮助。 24. **@@TEXTSIZE**:设置或...
本文将详细讲解如何使用ActiveX Data Objects (ADO)在Visual Studio 2012环境下连接到SQL Server数据库。 ADO是微软提供的一种高效、轻量级的数据访问接口,它允许开发者通过COM(Component Object Model)组件与...
SQL Response™**: monitors MS SQL Server health and activity, with alerts and diagnostic data SQL Multi Script™ Unlimited: execute multiple scripts against multiple SQL Servers with a single click ...
Server=小爱-PC\SQLSERVER2005;Database=HCCP;","","",adModeUnknown); ``` 其中,`driver`指定了数据源类型,`Server`指定了服务器名,`Database`指定了数据库名,空的用户名和密码表示使用默认凭据,`...
#### 1.1 SQL Server 连接配置 在PHP中,我们可以使用`mssql_connect`函数来建立与SQL Server的连接。具体代码如下: ```php $conn = mssql_connect("localhost", "sa", ""); // 这里使用了默认的主机名和用户名"sa...
String url = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=myDB"; String user = "username"; String password = "password"; try { Class.forName(...
SQL Response™**: monitors MS SQL Server health and activity, with alerts and diagnostic data SQL Multi Script™ Unlimited: execute multiple scripts against multiple SQL Servers with a single click ...
#import "msado15.dll" no_namespace rename("Error", "adError") CoInitialize(NULL); _ConnectionPtr conn("ADODB.Connection"); conn->ConnectionString = L"Provider=SQLOLEDB;Data Source=DB_SERVER;...
在MFC(Microsoft Foundation Classes)框架中,使用ADO(ActiveX Data Objects)连接SQL Server数据库是一种常见的数据访问方式。ADO提供了一种高效、简单的方法来访问和操作数据库,包括SQL Server。以下将详细阐述...
《.Net Core 2.1+NLog+SqlServer+MySql集成应用详解》 在现代软件开发中,日志记录是一项至关重要的任务,它能够帮助开发者追踪应用程序的运行状态,定位和解决问题。本实例将深入探讨如何在.Net Core 2.1环境中,...
### MFC中ADO连接SQL Server 2000远程数据库详解 #### 一、ADO概述 ActiveX Data Objects (ADO) 是由微软开发的一种用于访问数据的服务层接口,旨在简化与OLE DB提供程序的交互过程。它使得开发人员能够轻松地创建...