摘要:
在SSIS开发工具SQL Server Data Tools中提供了调试功能,可以让我们方便的跟踪参数赋值或者数据流条数。本文主要介绍了如何使用SSDT的调试功能。 Part A: Script task 的调试 情景:在一个SSIS package中参数rating的默认值是0,我们假设在Scrit Taks中需要把rating值更改为10. 在Scripttask里面加入C#赋... 阅读全文
摘要:
SSIS(SQL Server Integration Service)是Microsoft 从SQL Server2005 以后发布的,现在一直跟随每个SQL server版本。它是Microsoft BI 解决方案的一大利器,我们一般认为SSIS就是ETL(Extract Transform L 阅读全文
摘要:
1. 查看 Table 或者 Column 被那些object(存储过程、函数或View)调用. select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like '%tablename%' 2. 用其他表的字段数据更新表字段 update Table1
set Col1 = B.Col... 阅读全文