上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页
摘要: This information is from:http://blogs.msdn.com/b/dbrowne/archive/2010/07/08/how-to-configure-an-ssis-package-to-access-a-web-service-using-wcf.aspxWhen you are connecting to a web service from an SSIS Script component or transform using a WCF client, the normal method of configuring the WCF client f 阅读全文
posted @ 2013-10-04 15:06 Vincent.Dr 阅读(593) 评论(0) 推荐(0)
摘要: 数据的传递 变量与参数的使用[参数] 可以用 [表达式方式] 与 [变量]绑定[In 参数],关联变量值可传入内部;内部修改参数时,关联变量不会更改说明:1.定义一个[InChangeActivity],有一个string型[In 参数]myIn在[Execute]方法中打印myIn的值并修改myIn的值后再次打印2.在xaml工作流中添加一个string型[myVariable]变量3. 在xaml工作流中添加一个[Assign],为[myVariable]变量赋值4. 在xaml工作流中添加[InChangeActivity], [InChangeActivity.myIn]绑定到[myV 阅读全文
posted @ 2013-09-27 15:48 Vincent.Dr 阅读(582) 评论(0) 推荐(0)
摘要: 什么是工作流,工作流可以说是对业务处理过程的建模,当我们设计工作流的时候,我们首先要分析业务处理过程中要经历的步骤。然后,我们就可以利用WF创建工作流模型来模拟业务的处理过程。WF工作流包含两种类型的工作流:顺序工作流和状态机工作流。顺序工作流提供了一系列有组织的步骤,一般情况下,步骤是逐一执行的。可能有的步骤需要等待某些事件的发生才可以继续执行,但通常情况下顺序工作流一般用于无需人工干预的操作。 使用顺序建模风格来构建的工作流非常易于理解和创作。它们可以用来模拟简单到难度适中的过程。由于程序性活动相当于编程语言中的程序性语句,你就可以使用这种类型的工作流来模拟几乎所有类型的过程。顺序工作流. 阅读全文
posted @ 2013-09-26 15:48 Vincent.Dr 阅读(1953) 评论(0) 推荐(0)
摘要: SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTEDSELECT TOP 30ROUND(s.avg_total_user_cost * s.avg_user_impact * ( s.user_seeks+ s.user_scans ),0) AS [Total Cost] ,s.avg_total_user_cost * ( s.avg_user_impact / 100.0 ) * ( s.user_seeks+ s.user_scans ) AS Improvement_Measure ,DB_NAME() AS DatabaseName , 阅读全文
posted @ 2013-08-05 19:08 Vincent.Dr 阅读(347) 评论(0) 推荐(0)
摘要: 1. maxBufferSize一个正整数,指定内存中用于存储消息的缓冲区的最大大小(字节)。如果transferMode属性等于Buffered,则此属性应等于maxReceivedMessageSize属性值。如果transferMode属性等于Streamed,则此属性不能大于maxReceivedMessageSize属性值,应当至少为标头的大小。More info :http://msdn.microsoft.com/en-gb/library/system.servicemodel.configuration.netnamedpipebindingelement.maxbuffer 阅读全文
posted @ 2013-08-05 14:54 Vincent.Dr 阅读(269) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2013-08-05 13:48 Vincent.Dr 阅读(156) 评论(0) 推荐(0)
摘要: 1. In Script Task componentSet Value:Dts.Variables["ErrorMsg"].Value = string.Format("Connection Config Exception:{0}", ex.Message);Dts.Variables["ErrorStatus"].Value = true;Get Value:string FileName = (string)Dts.Variables["FileName"].Value;2. Execute SQL Tas 阅读全文
posted @ 2013-08-05 13:42 Vincent.Dr 阅读(184) 评论(0) 推荐(0)
摘要: Snapshot:When using the 'Flat File Source' and 'OLE DB Destination' or something else components to load some data through the components. Maybe we will have the error like that.Mismatched locale IDs. The component locale ID (2052) does not match the connection manager locale ID (205 阅读全文
posted @ 2013-08-05 12:13 Vincent.Dr 阅读(781) 评论(0) 推荐(0)
摘要: DateTimeFormatInfo pattern = new DateTimeFormatInfo() { ShortDatePattern = "your date pattern" };DateTime date = Convert.ToDateTime("your date string",pattern); 阅读全文
posted @ 2013-08-02 16:55 Vincent.Dr 阅读(265) 评论(0) 推荐(0)
摘要: 现象:Web服务器中SQL Server占用内存非常高,加内存后,SQL Server又吃掉新加的内存,好像内存永远不够用一样。分析:其实这并不一定是由于SQL Server活动过度造成的,在启动SQL Server后,SQL Server内存使用量会持续稳定上升,即使服务器上活动很少也不会下降,直到物理内存仅剩下4到10M为止,这是SQL Server缓冲池的预期行为,正常现象。解决:不过这种现象使得服务器应付峰值的能力降低,当突然有较大的活动时,可能使得服务器当机。要限制缓冲池的内存使用量,可以打开“SQL Server属性”->“内存”,在这一页中降低“最大值”,点击“确定”。点击 阅读全文
posted @ 2013-08-02 11:43 Vincent.Dr 阅读(1559) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 下一页