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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
M
MIT News - Artificial intelligence
T
Tailwind CSS Blog
Webroot Blog
Webroot Blog
S
Secure Thoughts
N
News and Events Feed by Topic
月光博客
月光博客
TaoSecurity Blog
TaoSecurity Blog
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
N
News | PayPal Newsroom
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
小众软件
小众软件
Recent Commits to openclaw:main
Recent Commits to openclaw:main
P
Privacy & Cybersecurity Law Blog
GbyAI
GbyAI
K
Kaspersky official blog
WordPress大学
WordPress大学
P
Proofpoint News Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
博客园 - 叶小钗
W
WeLiveSecurity
Jina AI
Jina AI
The Cloudflare Blog
Project Zero
Project Zero
Simon Willison's Weblog
Simon Willison's Weblog
V
Vulnerabilities – Threatpost
L
LangChain Blog
Forbes - Security
Forbes - Security
PCI Perspectives
PCI Perspectives
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
Recorded Future
Recorded Future
博客园 - 【当耐特】
H
Heimdal Security Blog
A
About on SuperTechFans
Cisco Talos Blog
Cisco Talos Blog
T
Threat Research - Cisco Blogs
云风的 BLOG
云风的 BLOG
Spread Privacy
Spread Privacy
L
LINUX DO - 最新话题
L
Lohrmann on Cybersecurity
Last Week in AI
Last Week in AI
Google DeepMind News
Google DeepMind News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
I
Intezer
Martin Fowler
Martin Fowler
S
Securelist
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint

博客园 - 特困生

腾讯围脖邀请 office2010 bata 4536 激活问题 windows7 64位 建行捷德UKey无法使用的问题 清除windows7 在任务栏上显示的图标和通知,自定义选项内的图标 Windows7 IIS 7.0 局域网无法访问的解决 - 特困生 c#.net 邮件发送 Maxdos v6 pxe 网刻教程 去掉微软的正版验证 高流量Web2.0网站性能调优的14条准则 Team Foundation但服务器部署 解决visual studio自动调试问题 Visual Studio 2005的各个版本 生成汉字验证码 - 特困生 - 博客园 C#常用函数和方法集汇总 安装vs2005sp1补丁注意事项 XMLHttpRequest对象 Web页面折线图控件(可以直接绑定数据) GridView数据导出到Excel中 c#绘制曲线图
sql2000和sql2005共存问题
特困生 · 2007-06-01 · via 博客园 - 特困生

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

---------------------------------------

    一直都想同时在系统中安装SQL2005和SQL2000,在项目中一般应用SQL2000的比较多,而安装SQL2005是出于学习的需要。在SQL2005使用的数据库,在SQL2000中采用还原或者附加方式都无法加载,只能通过脚本创建。有朋友说,可以在SQL2005中把数据库设置为8.0格式,再备份,可以在SQL2000中还原成功。但我试过这种方法不行。

   从SQL2000升级SQL2005,默认它会覆盖掉SQL2000,一开始不知道怎么才能两版本数据库并存使用,后来在网上看到相关资料,原来在再升级SQL2005的时候不要选择默认的实例创建数据库,另外创建一个实例,这样它不会覆盖掉SQL2000的相关文件。在企业管理器中可以选择启动SQL2000或者SQL2005版本的数据库。

    两个版本的安装次序没有先后之分,主要后一安装版本一定要另外创建实例,就可以并存。