sqlserver2000安装配置服务器失败的处理
xp-sp3下 安装 SqlServer2000个人版,最后报错,提示 安装 配置 服务器 失败 ,详细请见日志sqlstp.log等的。 报错后,照网上的方法,如下: 1、报错后,可以卸载并删除SqlServer的 安装 文件夹。把 安装 文件放在英文目录,计算机名最好改成大写英文 2、重
xp-sp3下安装SqlServer2000个人版,最后报错,提示安装配置服务器失败,详细请见日志sqlstp.log等的。
报错后,照网上的方法,如下:
1、报错后,可以卸载并删除SqlServer的安装文件夹。把安装文件放在英文目录,计算机名最好改成大写英文
2、重启后再装,同样报错,可以再次安装,选高级选项--修复注册表项。完后,企业管理器要重新安装下,安装的时候选择升级、添加组件。。。能勾上的都勾上,装后。重启。。,停止sql服务。运行安装程序,选升级、添加组件,选卸载。。。
以上方法都不行,怎么办,没法了,自己琢磨出了方法,如下:
在控制面板卸载sqlserver,并点下卸载的详细情况,有如下:
无法解除对自注册文件“C:/Program Files/Common Files/System/OLE DB/msmdcb80.dll”的注册。
使用“C:/Program Files/Common Files/Microsoft Shared/MSDesigners98/mdt2fw.dll”的文件。
使用“C:/Program Files/Common Files/Microsoft Shared/MSDesigners98/msdt70.dll”的文件。
使用“C:/Program Files/Common Files/Microsoft Shared/MSDesigners98/mdW9x70.dll”的文件。
使用“C:/WINDOWS/system32/mdt2fw95.dll”的文件。
使用“C:/Program Files/Common Files/Microsoft Shared/MSDesigners98/Resources/2052/mdt2fwui.dll”的文件。
使用“C:/Program Files/Common Files/Microsoft Shared/MSDesigners98/Resources/2052/msdt70ui.dll”的文件。
无法删除文件夹“d:/Program Files/Microsoft SQL Server/MSSQL/Install”。
重启,然后删除安装目录下的SqlServer文件夹。
然后运行sfc /scannow (需要插入xp光盘),相当于修复下系统文件。。
完后,在cmd下,运行:for %1 in (%windir%/system32/*.dll) do regsvr32.exe /s %1
相当于重新注册下dll。
最后,再重新安装SqlServer,成功了,嘿嘿

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. First, we right-click the blank space of the taskbar and select the [Task Manager] option, or right-click the start logo, and then select the [Task Manager] option. 2. In the opened Task Manager interface, we click the [Services] tab on the far right. 3. In the opened [Service] tab, click the [Open Service] option below. 4. In the [Services] window that opens, right-click the [InternetConnectionSharing(ICS)] service, and then select the [Properties] option. 5. In the properties window that opens, change [Open with] to [Disabled], click [Apply] and then click [OK]. 6. Click the start logo, then click the shutdown button, select [Restart], and complete the computer restart.

Installing Android applications on Linux has always been a concern for many users. Especially for Linux users who like to use Android applications, it is very important to master how to install Android applications on Linux systems. Although running Android applications directly on Linux is not as simple as on the Android platform, by using emulators or third-party tools, we can still happily enjoy Android applications on Linux. The following will introduce how to install Android applications on Linux systems.

The role of a DHCP relay is to forward received DHCP packets to another DHCP server on the network, even if the two servers are on different subnets. By using a DHCP relay, you can deploy a centralized DHCP server in the network center and use it to dynamically assign IP addresses to all network subnets/VLANs. Dnsmasq is a commonly used DNS and DHCP protocol server that can be configured as a DHCP relay server to help manage dynamic host configurations in the network. In this article, we will show you how to configure dnsmasq as a DHCP relay server. Content Topics: Network Topology Configuring Static IP Addresses on a DHCP Relay D on a Centralized DHCP Server

Understanding Linux Bashrc: Function, Configuration and Usage In Linux systems, Bashrc (BourneAgainShellruncommands) is a very important configuration file, which contains various commands and settings that are automatically run when the system starts. The Bashrc file is usually located in the user's home directory and is a hidden file. Its function is to customize the Bashshell environment for the user. 1. Bashrc function setting environment

If you have used Docker, you must understand daemons, containers, and their functions. A daemon is a service that runs in the background when a container is already in use in any system. Podman is a free management tool for managing and creating containers without relying on any daemon such as Docker. Therefore, it has advantages in managing containers without the need for long-term backend services. Additionally, Podman does not require root-level permissions to be used. This guide discusses in detail how to install Podman on Ubuntu24. To update the system, we first need to update the system and open the Terminal shell of Ubuntu24. During both installation and upgrade processes, we need to use the command line. a simple

While studying in high school, some students take very clear and accurate notes, taking more notes than others in the same class. For some, note-taking is a hobby, while for others, it is a necessity when they easily forget small information about anything important. Microsoft's NTFS application is particularly useful for students who wish to save important notes beyond regular lectures. In this article, we will describe the installation of Ubuntu applications on Ubuntu24. Updating the Ubuntu System Before installing the Ubuntu installer, on Ubuntu24 we need to ensure that the newly configured system has been updated. We can use the most famous "a" in Ubuntu system

Detailed steps to install Go language on Win7 computer Go (also known as Golang) is an open source programming language developed by Google. It is simple, efficient and has excellent concurrency performance. It is suitable for the development of cloud services, network applications and back-end systems. . Installing the Go language on a Win7 computer allows you to quickly get started with the language and start writing Go programs. The following will introduce in detail the steps to install the Go language on a Win7 computer, and attach specific code examples. Step 1: Download the Go language installation package and visit the Go official website

In the process of PHP development, dealing with special characters is a common problem, especially in string processing, special characters are often escaped. Among them, converting special characters into single quotes is a relatively common requirement, because in PHP, single quotes are a common way to wrap strings. In this article, we will explain how to handle special character conversion single quotes in PHP and provide specific code examples. In PHP, special characters include but are not limited to single quotes ('), double quotes ("), backslash (), etc. In strings
