search
HomeDatabaseMysql Tutorialsqlserver2000安装配置服务器失败的处理

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,成功了,嘿嘿

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What Are the Limitations of Using Views in MySQL?What Are the Limitations of Using Views in MySQL?May 14, 2025 am 12:10 AM

MySQLviewshavelimitations:1)Theydon'tsupportallSQLoperations,restrictingdatamanipulationthroughviewswithjoinsorsubqueries.2)Theycanimpactperformance,especiallywithcomplexqueriesorlargedatasets.3)Viewsdon'tstoredata,potentiallyleadingtooutdatedinforma

Securing Your MySQL Database: Adding Users and Granting PrivilegesSecuring Your MySQL Database: Adding Users and Granting PrivilegesMay 14, 2025 am 12:09 AM

ProperusermanagementinMySQLiscrucialforenhancingsecurityandensuringefficientdatabaseoperation.1)UseCREATEUSERtoaddusers,specifyingconnectionsourcewith@'localhost'or@'%'.2)GrantspecificprivilegeswithGRANT,usingleastprivilegeprincipletominimizerisks.3)

What Factors Influence the Number of Triggers I Can Use in MySQL?What Factors Influence the Number of Triggers I Can Use in MySQL?May 14, 2025 am 12:08 AM

MySQLdoesn'timposeahardlimitontriggers,butpracticalfactorsdeterminetheireffectiveuse:1)Serverconfigurationimpactstriggermanagement;2)Complextriggersincreasesystemload;3)Largertablesslowtriggerperformance;4)Highconcurrencycancausetriggercontention;5)M

MySQL: Is it safe to store BLOB?MySQL: Is it safe to store BLOB?May 14, 2025 am 12:07 AM

Yes,it'ssafetostoreBLOBdatainMySQL,butconsiderthesefactors:1)StorageSpace:BLOBscanconsumesignificantspace,potentiallyincreasingcostsandslowingperformance.2)Performance:LargerrowsizesduetoBLOBsmayslowdownqueries.3)BackupandRecovery:Theseprocessescanbe

MySQL: Adding a user through a PHP web interfaceMySQL: Adding a user through a PHP web interfaceMay 14, 2025 am 12:04 AM

Adding MySQL users through the PHP web interface can use MySQLi extensions. The steps are as follows: 1. Connect to the MySQL database and use the MySQLi extension. 2. Create a user, use the CREATEUSER statement, and use the PASSWORD() function to encrypt the password. 3. Prevent SQL injection and use the mysqli_real_escape_string() function to process user input. 4. Assign permissions to new users and use the GRANT statement.

MySQL: BLOB and other no-sql storage, what are the differences?MySQL: BLOB and other no-sql storage, what are the differences?May 13, 2025 am 12:14 AM

MySQL'sBLOBissuitableforstoringbinarydatawithinarelationaldatabase,whileNoSQLoptionslikeMongoDB,Redis,andCassandraofferflexible,scalablesolutionsforunstructureddata.BLOBissimplerbutcanslowdownperformancewithlargedata;NoSQLprovidesbetterscalabilityand

MySQL Add User: Syntax, Options, and Security Best PracticesMySQL Add User: Syntax, Options, and Security Best PracticesMay 13, 2025 am 12:12 AM

ToaddauserinMySQL,use:CREATEUSER'username'@'host'IDENTIFIEDBY'password';Here'showtodoitsecurely:1)Choosethehostcarefullytocontrolaccess.2)SetresourcelimitswithoptionslikeMAX_QUERIES_PER_HOUR.3)Usestrong,uniquepasswords.4)EnforceSSL/TLSconnectionswith

MySQL: How to avoid String Data Types common mistakes?MySQL: How to avoid String Data Types common mistakes?May 13, 2025 am 12:09 AM

ToavoidcommonmistakeswithstringdatatypesinMySQL,understandstringtypenuances,choosetherighttype,andmanageencodingandcollationsettingseffectively.1)UseCHARforfixed-lengthstrings,VARCHARforvariable-length,andTEXT/BLOBforlargerdata.2)Setcorrectcharacters

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools