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

推荐订阅源

博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
S
SegmentFault 最新的问题
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
F
Fortinet All Blogs
TaoSecurity Blog
TaoSecurity Blog
D
Docker
C
Cybersecurity and Infrastructure Security Agency CISA
K
Kaspersky official blog
宝玉的分享
宝玉的分享
腾讯CDC
Google Online Security Blog
Google Online Security Blog
Recorded Future
Recorded Future
T
The Exploit Database - CXSecurity.com
T
The Blog of Author Tim Ferriss
V
V2EX
S
Securelist
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
CERT Recently Published Vulnerability Notes
A
Arctic Wolf
Scott Helme
Scott Helme
L
LINUX DO - 热门话题
Y
Y Combinator Blog
P
Proofpoint News Feed
T
Tor Project blog
AWS News Blog
AWS News Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
博客园 - 聂微东
T
Threat Research - Cisco Blogs
B
Blog
Attack and Defense Labs
Attack and Defense Labs
L
Lohrmann on Cybersecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
阮一峰的网络日志
阮一峰的网络日志
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
N
News and Events Feed by Topic
博客园 - 司徒正美
H
Help Net Security
C
Cisco Blogs
C
Check Point Blog
S
Secure Thoughts

博客园 - David

微创急聘实习生1名 有感于最近一个朋友买股票大亏 从数据表中取出第n条到第m条的记录的方法 dts无法识别Excel中的数字列?(续) dts无法识别excel中的数字值? 如何在定义游标的时候使用动态sql语句? Sql2005 Beta3 Reporint Service问题1 -Row的Grouping属性无法取消 微创急聘实习生1名 批量insert数据 获得SqlServer数据库连接信息 sql server多表关联update Asp.ne页面提交时,动态生成的UserControl消失了。 用css filter做颜色渐变的问题 从sql2000导入数据到sql2005的问题 果然是.net写的 为啥Sql 2005 Management Studio 这么慢?? 用WebDav调用Exchange发信(2)-使用他人名义 傻×的Yukon Beta3安装程序 Teched初体验(第一天)
How to run DTS at sqlserver2005
David · 2005-09-28 · via 博客园 - David

1.创建测试DTS
在sqlserver 2000服务器上创建测试DTS包,名称为test,其中有两个Connect,一个是excel,一个是sql server,导入excel到sqlserver中,为方便起见,数据只有一个名为"id"的列

2.迁移到2005
用Management Studio连接到sqlserver 2000服务器,在Object Explorer里选Management-Legacy_Data Transformation Service,可以看到所有的DTS包,如果直接在包上点右键,选"open",会遇到下面的错误提示

TITLE: Object Explorer
------------------------------

Unable to load DTS 
2000 Runtime. This component may have not been installed. (Microsoft.SqlServer.DtsObjectExplorerUI)

------------------------------
BUTTONS:

OK
------------------------------

我已经按照帮助上的说法,安装了Legacy Component,不知道为什么还会出这个错误。
这时候应该选中想要迁移的包,右键菜单选Migrate,弹出向导,在向导中设置好Source和Desination就可以了。

3.运行迁移好的包
连接到sqlserver 2005,注意server type选择"Integration Service"
可以在Object Explorer的Stored Packages-MSDB下找到test这个包(此时已经是SSIS包而不是DTS包了),右键菜单选择"Run Package",这时弹出的是dtexecui.exe的界面。
左边列表中选择"Connection Managers",可以看到包中的Connection,不爽的是,Connection String只能手工改,而不象2000中图形化的操作,在对话框中选文件。
改好Connection,点Execute按钮既可以了。
如果要图形化方式查看和运行SSIS包,只能用BI Development Studio,这玩意对机器要求也满高,我搞这个实验的时候,是1G内存,几乎用光,想玩yukon的朋友得升级内存了,呵呵。