摘要: 在网上找到一个生成时间维度表的存储过程,挺好用的。放到这里来,怕以后忘了。 create PROCEDURE [dbo].[Create_time_by_day_dimension] -- Add the parameters for the stored procedure here AS BEGIN -- SET NOCOUNT ON added to prevent extra resul... 阅读全文
posted @ 2009-11-18 16:40 andy1016 阅读(280) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using Word;using System.Data;using System.Collections;namespace Pixysoft.Office{ /// <summary> /// 支持创建、打开、保存、关闭文档 /// 支持页面设置 /// ... 阅读全文
posted @ 2009-10-29 17:49 andy1016 阅读(318) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// Excel操作类 /// </summary> public class Excel { #region 私有属性 private _Application _oExcel = null; //Excel应用程序 private _Workbook _oBook = null; //Excel工作薄 private _Worksheet ... 阅读全文
posted @ 2009-08-05 11:34 andy1016 阅读(610) 评论(0) 推荐(0) 编辑
摘要: SQL Server 索引结构及其使用(一) 作者:freedk 一、深入浅出理解索引结构   实际上,您可以把索引理解为一种特殊的目录。微软的SQL SERVER提供了两种索引:聚集索引(clustered index,也称聚类索引、簇集索引)和非聚集索引(nonclustered index,也称非聚类索引、非簇集索引)。下面,我们举例来说明一下聚集索引和非聚集索引的区别:   其实,我们... 阅读全文
posted @ 2009-07-30 17:48 andy1016 阅读(157) 评论(0) 推荐(0) 编辑
摘要: web高性能开发 CSDN曾经是伪静态,现在长时间不来看了,所以并不知道是否已经做过改进,这里简单的针对。NET下的发容量来说下吧,其实这个不是只针对。NET,毕竟架构不分语言 一般情况下,架构分两种来讨论的,一种是开发架构,一种是部署架构 部署架构,就是开发完的程序在实际运行环境下,通过负载均衡,DNS轮询,SquID等等来减轻单台服务器负载,达到性能优化的目的 这里大家估计更想了解的是开发上... 阅读全文
posted @ 2009-07-29 11:27 andy1016 阅读(336) 评论(0) 推荐(0) 编辑