Home > Database > Mysql Tutorial > 同时安装sql2000和sql2005,经验点滴_MySQL

同时安装sql2000和sql2005,经验点滴_MySQL

WBOY
Release: 2016-06-01 14:05:20
Original
801 people have browsed it

sql2000的服务器版本是8.0,sql2005是9.0

首先要读安装必须配置(见后记)

1.我是先装2000的,安装好后打上sp4补丁,(sa密码不要太简单)

1.然后安装sql2005,安装的时候只要找到tools目录下的setup.exe 安装就可以了,安装完毕会有个SQL Server Management Studio,这个就是sql2000的企业管理器,

2,好多人都连接不上SQL Server Management Studio2005的数据库,开始的时候我也试了好多,

其实只要选择数据库引擎,然后服务器名称里面要填写"机器名\SQLEXPRESS",如果你的机器名是haha,那么"haha\SQLEXPRESS",验证方式根据你的需求选择,点连接就能连上sql数据库引擎了,你要是自定义服务名了就用你的自定义服务名替换SQLEXPRESS

我在附加数据库的时候2005附加过后的数据库,不能被2000附加了

Q:ms sql 2005 的数据库可以导到(还原or恢复)ms sql 2000 里面么?
A:可以在sql 2005中生成数据库的脚本, 注意生成的时候, 要选择生成sql 2000这个版本的脚本然后在2000中用这个脚本建立目标库, 再用数据导入/导出把数据从2005导到2000即可.

Q:SQL Sever2005的用户名和口令应如何设置?
A:--把chinawn替换成你要建的用户
sp_addlogin 'chinawn','a','pubs'
go
EXEC sp_adduser 'chinawn', 'chinawn', 'db_owner'

后记:
安装 SQL Server 2005 的硬件和软件要求

http://msdn2.microsoft.com/zh-cn/library/ms166016.aspx

安装 SQL Server 的安全注意事项

升级到 SQL Server 2005

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template