热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

SQLServer无法生成FRunCM线程的解决方法

这篇文章主要介绍了SQLServer无法生成FRunCM线程,请查看SQLServer错误日志和Windows事件日志,解决方法就在下面

SQL Server 无法生成 FRunCM 线程。数据库错误日志如下:

代码如下:

2013-09-26 21:21:50.31 Server      Microsoft SQL Server 2005 - 9.00.1399.06 (Intel X86)
Oct 14 2005 00:33:37
Copyright (c) 1988-2005 Microsoft Corporation
Enterprise Edition on Windows NT 5.2 (Build 3790: Service Pack 2)

2013-09-26 21:21:50.31 Server      (c) 2005 Microsoft Corporation.
2013-09-26 21:21:50.31 Server      All rights reserved.
2013-09-26 21:21:50.31 Server      Server process ID is 2680.
2013-09-26 21:21:50.31 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG'.
2013-09-26 21:21:50.31 Server      This instance of SQL Server last reported using a process ID of 2884 at 2013-9-26 21:20:51 (local) 2013-9-26 13:20:51 (UTC). This is an informational message only; no user action is required.
2013-09-26 21:21:50.31 Server      Registry startup parameters:
2013-09-26 21:21:50.31 Server           -d C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\master.mdf
2013-09-26 21:21:50.31 Server           -e C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG
2013-09-26 21:21:50.31 Server           -l C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\mastlog.ldf
2013-09-26 21:21:50.32 服务器         SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
2013-09-26 21:21:50.32 服务器         Detected 2 CPUs. This is an informational message; no user action is required.
2013-09-26 21:21:50.37 服务器         Set AWE Enabled to 1 in the configuration parameters to allow use of more memory.
2013-09-26 21:21:50.49 服务器         Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
2013-09-26 21:21:50.53 服务器         Attempting to initialize Microsoft Distributed Transaction Coordinator (MS DTC). This is an informational message only. No user action is required.
2013-09-26 21:21:52.54 服务器         Attempting to recover in-doubt distributed transactions involving Microsoft Distributed Transaction Coordinator (MS DTC). This is an informational message only. No user action is required.
2013-09-26 21:21:52.54 服务器         Database Mirroring Transport is disabled in the endpoint configuration.
2013-09-26 21:21:52.54 spid5s      Starting up database 'master'.
2013-09-26 21:21:52.68 spid5s      Starting up database 'mssqlsystemresource'.
2013-09-26 21:21:52.81 spid5s      Server name is 'SHGS1653'. This is an informational message only. No user action is required.
2013-09-26 21:21:52.82 spid8s      Starting up database 'model'.
2013-09-26 21:21:52.93 spid8s      Clearing tempdb database.
2013-09-26 21:21:53.10 服务器         A self-generated certificate was successfully loaded for encryption.
2013-09-26 21:21:53.10 服务器         错误: 17182,严重性: 16,状态: 1。
2013-09-26 21:21:53.10 服务器         TDSSNIClient initialization failed with error 0x7e, status code 0x60.
2013-09-26 21:21:53.10 服务器         错误: 17182,严重性: 16,状态: 1。
2013-09-26 21:21:53.10 服务器         TDSSNIClient initialization failed with error 0x7e, status code 0x1.
2013-09-26 21:21:53.10 服务器         错误: 17826,严重性: 18,状态: 3。
2013-09-26 21:21:53.10 服务器         Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the error log.
2013-09-26 21:21:53.10 服务器         错误: 17120,严重性: 16,状态: 1。
2013-09-26 21:21:53.10 服务器         SQL Server could not spawn FRunCM thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.

解决办法:

分析下来是由于某些特殊的改动导致了SQL SERVER2005数据库网络协议中VIA协议的启用,讲该协议关闭即可。
Sql Server Configuration Manager-------Sql Server 2005网络配置------MSSQLSERVER的协议,讲VIA协议禁用即可。


推荐阅读
  • 本文详细介绍了IBM DB2数据库在大型应用系统中的应用,强调其卓越的可扩展性和多环境支持能力。文章深入分析了DB2在数据利用性、完整性、安全性和恢复性方面的优势,并提供了优化建议以提升其在不同规模应用程序中的表现。 ... [详细]
  • Windows服务与数据库交互问题解析
    本文探讨了在Windows 10(64位)环境下开发的Windows服务,旨在定期向本地MS SQL Server (v.11)插入记录。尽管服务已成功安装并运行,但记录并未正确插入。我们将详细分析可能的原因及解决方案。 ... [详细]
  • 1:有如下一段程序:packagea.b.c;publicclassTest{privatestaticinti0;publicintgetNext(){return ... [详细]
  • 优化联通光猫DNS服务器设置
    本文详细介绍了如何为联通光猫配置DNS服务器地址,以提高网络解析效率和访问体验。通过智能线路解析功能,域名解析可以根据访问者的IP来源和类型进行差异化处理,从而实现更优的网络性能。 ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 深入理解 SQL 视图、存储过程与事务
    本文详细介绍了SQL中的视图、存储过程和事务的概念及应用。视图为用户提供了一种灵活的数据查询方式,存储过程则封装了复杂的SQL逻辑,而事务确保了数据库操作的完整性和一致性。 ... [详细]
  • 本文介绍了如何使用 PostgreSQL 的 `UPDATE ... FROM` 语法,通过映射表实现对多行记录进行高效的批量更新。这种方法不仅适用于单列更新,还支持多列的同时更新。 ... [详细]
  • CentOS 7 磁盘与文件系统管理指南
    本文详细介绍了磁盘的基本结构、接口类型、分区管理以及文件系统格式化等内容,并提供了实际操作步骤,帮助读者更好地理解和掌握 CentOS 7 中的磁盘与文件系统管理。 ... [详细]
  • 探讨如何通过编程技术实现100个并发连接,解决线程创建顺序问题,并提供高效的并发测试方案。 ... [详细]
  • 本周信息安全小组主要进行了CTF竞赛相关技能的学习,包括HTML和CSS的基础知识、逆向工程的初步探索以及整数溢出漏洞的学习。此外,还掌握了Linux命令行操作及互联网工作原理的基本概念。 ... [详细]
  • 本文详细介绍了如何使用PHP检测AJAX请求,通过分析预定义服务器变量来判断请求是否来自XMLHttpRequest。此方法简单实用,适用于各种Web开发场景。 ... [详细]
  • 优化版Windows 10 LTSC 21H2企业版:适用于低内存设备
    此版本为经过优化的Windows 10 LTSC 21H2企业版,特别适合低内存配置的计算机。它基于官方版本进行了精简和性能优化,确保在资源有限的情况下依然能够稳定运行。 ... [详细]
  • 解决Linux系统中pygraphviz安装问题
    本文探讨了在Linux环境下安装pygraphviz时遇到的常见问题,并提供了详细的解决方案和最佳实践。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
author-avatar
半E冷半柔半妖娆
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有