摘要: 转载:http://www.cnblogs.com/iamowen/archive/2011/11/03/2235068.html1.创建测试环境,(插入100万条数据大概耗时5分钟)。create database DBTestuse DBTest--创建测试表create table pagetest(id int identity(1,1) not null,col01 int null,col02 nvarchar(50) null,col03 datetime null)--1万记录集declare @i intset @i=0while(@i<10000)begin inse 阅读全文
posted @ 2011-11-03 23:00 风从指尖飘过 阅读(177) 评论(0) 推荐(0) 编辑