摘要: 查询SQL的系统信息 阅读全文
posted @ 2009-06-23 10:54 refeiner 阅读(139) 评论(0) 推荐(0) 编辑
摘要: INT 型任意十进制转化为N进制 阅读全文
posted @ 2009-06-22 22:47 refeiner 阅读(249) 评论(0) 推荐(0) 编辑
摘要: Understanding the SSIS engine.How dose it schedule jobs? How dose it work? 阅读全文
posted @ 2009-06-22 17:55 refeiner 阅读(268) 评论(0) 推荐(0) 编辑
摘要: VSA脚本必须在包运行前被编译。Script task组件包含在保存包的时候预编译脚本到binary code的选项。当脚本被预编译的时候,在包运行时就可以不加载语言编译器,这样会大大提高运行速度。不管怎样,预编译成为binary files会暂用一定的磁盘空间。如果你不选在预编译选项,脚本将在运行时编译,这样的结果是磁盘占用空间较少但是运行速度会下降。如果磁盘空间充裕,最好的选择是进行预编译。还有,只有预编译的脚本可以在64位环境下运行。 阅读全文
posted @ 2009-06-22 17:41 refeiner 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 用于应用程序域中的程序集通过影像复制可以在不卸载应用程序域的情况下进行更新。这对必须不间断使用的应用程序(如 ASP.NET 网站)尤为有用。 加载程序集时,公共语言运行库会将程序集文件锁定,因此只有卸载了程序集之后才能更新该文件。从应用程序域卸载程序集的唯一方法是卸载该应用程序域,因此在正常情况下,只有卸载了使用程序集的所有应用程序域之后才能在磁盘上更新程序集。 将应用程序域配置为影像复制文件时,来自应用程序路径的程序集被复制到另一个位置并从该位置进行加载。该副本被锁定,但原始程序集文件将取消锁定并可以进行更新。 阅读全文
posted @ 2009-06-22 11:04 refeiner 阅读(258) 评论(0) 推荐(0) 编辑
摘要: The IQueryable and IQueryable(Of T) interfaces provide the functionality to evaluate queries for agiven data source. The IQueryable interface does this where the type of the data is not known, and the... 阅读全文
posted @ 2009-05-20 15:30 refeiner 阅读(333) 评论(0) 推荐(0) 编辑
摘要: An expression tree is a representation of language-level code in the form of data. The data is stored in atree-like structure, hence the name.Expression trees in LINQ are used for several reasons, one... 阅读全文
posted @ 2009-05-20 15:20 refeiner 阅读(211) 评论(0) 推荐(0) 编辑
摘要: The var keyword is new to C# 3.0 and enables you to implicitly declare variables at the method scope. The great thing about it is that the implicitly typed variable is just as strongly typed as its explicitly declared counterpart 阅读全文
posted @ 2009-05-20 15:12 refeiner 阅读(208) 评论(0) 推荐(0) 编辑
摘要: The last action of the LINQ query operations is query execution. Even though the query expression is defined and stored in a query variable when the query is created, the execution of the query does not typically take place until iteration over the query variable begins 阅读全文
posted @ 2009-05-20 14:27 refeiner 阅读(409) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/YilingLai/archive/2006/12/22/600279.html 阅读全文
posted @ 2009-04-18 23:54 refeiner 阅读(204) 评论(0) 推荐(0) 编辑