2010年5月1日

asp.net Excel导入和导出

摘要: 1、Excel数据导入到数据库中://该方法实现从Excel中导出数据到DataSet中,其中filepath为Excel文件的绝对路径,sheetname为表示那个Excel表; public DataSet ExcelDataSource( string filepath , string sheetname ) ...{ string strConn; strConn = "Provider... 阅读全文

posted @ 2010-05-01 20:32 pwm_1987 阅读(375) 评论(0) 推荐(0) 编辑

sql海量数据优化

摘要: 具体要注意的: 1.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如: select id from t where num is null 可以在num上设置默认值0,确保表中num列没有null值,然后这样查询: select id from t where num=0 2.应尽量避免在 where 子句中使用!=或<>操作... 阅读全文

posted @ 2010-05-01 20:17 pwm_1987 阅读(309) 评论(0) 推荐(1) 编辑

导航