惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Spread Privacy
Spread Privacy
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
SecWiki News
SecWiki News
腾讯CDC
P
Privacy International News Feed
Webroot Blog
Webroot Blog
J
Java Code Geeks
爱范儿
爱范儿
A
About on SuperTechFans
S
Secure Thoughts
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
D
DataBreaches.Net
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Security Latest
Security Latest
Forbes - Security
Forbes - Security
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
量子位
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
V
Visual Studio Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 聂微东
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs

博客园 - 小洋房

防止中文程序在英文系统上乱码 [Delphi] 快速获取文件大小 SQL Server2005中四种排名函数的使用 Delphi字符串函数大全 DateUtils-Function 用Delphi创建服务程序 - 小洋房 - 博客园 由图像的灰度化看基本图像处理 [转摘]Indy10,采用线程,发送电子邮件 如何过XP的防火墙而不被拦截 自动安装SQL Server数据库 现有 Delphi 项目迁移到 Tiburon 中的注意事项 Delphi中的字符串(转) Delphi之通过崩溃地址找出源代码的出错行 Playing With System Using Delphi Format函数详解 更改Delphi系统的默认字体 delphi指针 关于基础类数据结构的设计想法 判断SQL SERVER 服务是否断开
安装MSDE 2000
小洋房 · 2008-10-18 · via 博客园 - 小洋房

安装MSDE 2000

  • MSDE 是什么
  • 如何获得 MSDE 2000的安装文件
  • 安装MSDE 2000的步骤(请不要双击setup.exe文件!请务必按说明进行!

MSDE 2000是什么?

    MSDE是“Microsoft SQLServer Desktop Edition”的缩写,顾名思义,是MS SQL Server 2000的适用于桌面操作系统的版本。在Windows 98、Windows Me、Windows 2000 Professional等桌面操作系统下,不能安装MS SQL Server 2000的数据库服务,只能安装MSDE。

如何获得 MSDE 2000的安装文件

    网上下载:
http://download.microsoft.com/download/4/5/1/451d5d5c-69d4-40d5-b85d-f1d756cf46db/CHS_MSDE2000A.exe适用于Win98/2000 Professional/XPhttp://download.microsoft.com/download/4/5/1/451d5d5c-69d4-40d5-b85d-f1d756cf46db/CHS_MSDE2000A_WinME.exe适用于Win Me

安装MSDE 2000的步骤(请不要双击解压后的setup.exe文件!请务必按以下说明进行!

  1. 双击下载的安装包,解压缩到c:\MSDERelA
  2. 按以下方法进入DOS命令行状态
    如果是Win 2000 Pro,选择“开始-->程序-->附件-->命令提示符”;
    如果是Win98,选择“开始-->程序-->MS-DOS提示符”
  3. 进入C:\MSDERelA
  4. 输入以下命令
    C:\MSDERelA> setup sapwd="abc" securitymode=SQL disablenetworkprotocols=0
    注意:上面命令行中的"abc"是数据库超级用户sa的口令,此处仅以设成"abc"举例,您可以随意设置,但要记住,因为在后面安装Excel服务器数据库时要用到。
  5. 再次出现命令提示符后安装完成
  6. 启动数据库服务,设置其每次开机后自动启动。
    打开“我的电脑”,找到文件“C:\Program Files\Microsoft SQL Server\80\Tools\Binn\sqlmangr.exe”(假设您把MSDE安装在C盘上,如果安装在D盘上,就要到D盘的Program Files目录下寻找),双击运行。出现以下窗口。

    如果左下角的图标为红色,按[开始/继续]按钮启动数据库服务,左下角的图标成为绿色的向右箭头。选中“当启动OS时自动启动服务”复选框。
    当数据库服务被启动之后,在桌面工具栏的右下角会出现这样的图标

至此已完成MSDE的安装。