SQL Server 大量数据的分页存储过程代码

   OK,我们首先创建一数据库:data_Test,并在此数据库中创建一表:tb_TestTable

  create database data_Test --创建数据库data_Test

  GO

  use data_Test

  GO

  create table tb_TestTable --创建表

  (

  id int identity(1,1) primary key,

  userName nvarchar(20) not null,

  userPWD nvarchar(20) not null,

  userEmail nvarchar(40) null

  )

  GO

  然后我们在数据表中插入2000000条数据:

  --插入数据

  set identity_insert tb_TestTable on

  declare @count int

  set @count=1

  while @count<=2000000

  begin

  insert into tb_TestTable(id,userName,userPWD,userEmail) values(@count,'admin','admin888','lli0077@yahoo.com.cn')

  set @count=@count+1

  end

  set identity_insert tb_TestTable off

  我首先写了五个常用存储过程:

  1,利用select top 和select not in进行分页,具体代码如下:

  create procedure proc_paged_with_notin --利用select top and select not in

  (

  @pageIndex int, --页索引

  @pageSize int --每页记录数

  )

  as

  begin

  set nocount on;

  declare @timediff datetime --耗时

  declare @sql nvarchar(500)

  select @timediff=Getdate()

  set @sql='select top '+str(@pageSize)+' * from tb_TestTable where(ID not in(select top '+str(@pageSize*@pageIndex)+' id from tb_TestTable order by ID ASC)) order by ID'

  execute(@sql) --因select top后不支技直接接参数,所以写成了字符串@sql

  select datediff(ms,@timediff,GetDate()) as 耗时

  set nocount off;

  end

  2,利用select top 和 select max(列键)

  create procedure proc_paged_with_selectMax --利用select top and select max(列)

  (

  @pageIndex int, --页索引

  @pageSize int --页记录数

  )

  as

  begin

  set nocount on;

  declare @timediff datetime

  declare @sql nvarchar(500)

  select @timediff=Getdate()

  set @sql='select top '+str(@pageSize)+' * From tb_TestTable where(ID>(select max(id) From (select top '+str(@pageSize*@pageIndex)+' id From tb_TestTable order by ID) as TempTable)) order by ID'

  execute(@sql)

  select datediff(ms,@timediff,GetDate()) as 耗时

  set nocount off;

  end

  3,利用select top和中间变量--此方法因网上有人说效果最佳,所以贴出来一同测试

  create procedure proc_paged_with_Midvar --利用ID>最大ID值和中间变量

  (

  @pageIndex int,

  @pageSize int

  )

  as

  declare @count int

  declare @ID int

  declare @timediff datetime

  declare @sql nvarchar(500)

  begin

  set nocount on;

  select @count=0,@ID=0,@timediff=getdate()

  select @count=@count+1,@ID=case when @count<=@pageSize*@pageIndex then ID else @ID end from tb_testTable order by id

  set @sql='select top '+str(@pageSize)+' * from tb_testTable where ID>'+str(@ID)

  execute(@sql)

  select datediff(ms,@timediff,getdate()) as 耗时

  set nocount off;

  end

  4,利用Row_number() 此方法为SQL server 2005中新的方法,利用Row_number()给数据行加上索引

  create procedure proc_paged_with_Rownumber --利用SQL 2005中的Row_number()

  (

  @pageIndex int,

  @pageSize int

  )

  as

  declare @timediff datetime

  begin

  set nocount on;

  select @timediff=getdate()

  select * from (select *,Row_number() over(order by ID asc) as IDRank from tb_testTable) as IDWithRowNumber where IDRank>@pageSize*@pageIndex and IDRank<@pageSize*(@pageIndex+1)

  select datediff(ms,@timediff,getdate()) as 耗时

  set nocount off;

  end

  5,利用临时表及Row_number

  create procedure proc_CTE --利用临时表及Row_number

  (

  @pageIndex int, --页索引

  @pageSize int --页记录数

  )

  as

  set nocount on;

  declare @ctestr nvarchar(400)

  declare @strSql nvarchar(400)

  declare @datediff datetime

  begin

  select @datediff=GetDate()

  set @ctestr='with Table_CTE as

  (select ceiling((Row_number() over(order by ID ASC))/'+str(@pageSize)+') as page_num,* from tb_TestTable)';

  set @strSql=@ctestr+' select * From Table_CTE where page_num='+str(@pageIndex)

  end

  begin

  execute sp_executesql @strSql

  select datediff(ms,@datediff,GetDate())

  set nocount off;

  end

  OK,至此,存储过程创建完毕,我们分别在每页10条数据的情况下在第2页,第1000页,第10000页,第100000页,第199999页进行测试,耗时单位:ms 每页测试5次取其平均值

时间: 2024-12-27 23:50:25

SQL Server 大量数据的分页存储过程代码的相关文章

JDBC操作 SQL SERVER之数据的分页显示

  <%@ page language="java" contentType="text/html; charset=gb2312"%> <%@ page import="java.sql.*" %> <%      try {       Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ; } catch(ClassNotFoundException

两款sql 分页存储过程代码

文章收藏了两款sql 分页存储过程代码,这二款存储过程是二款高效分页存储过程代码,如果你觉得自己写的语句不够,强的话,可以利用我们现成的高效分页存储过程实例代码. create procedure pages @tablenames varchar(200), --表名,可以是多个表,但不能用别名 @primarykey varchar(100), --主键,可以为空,但@order为空时该值不能为空 @fields varchar(800), --要取出的字段,可以是多个表的字段,可以为空,为

实现SQL Server 原生数据从XML生成JSON数据的实例代码

实现SQL Server 原生数据从XML生成JSON数据的实例代码 SQL Server 是关系数据库,查询结果通常都是数据集,但是在一些特殊需求下,我们需要XML数据,最近这些年,JSON作为WebAPI常用的交换数据格式,那么数据库如何生成JSON数据呢?今天就写了一个DEMO. 1.创建表及测试数据 SET NOCOUNT ON IF OBJECT_ID('STATS') IS NOT NULL DROP TABLE STATS IF OBJECT_ID('STATIONS') IS N

动态创建SQL Server数据库、表、存储过程

server|创建|存储过程|动态|数据|数据库 下面是利用SQL语句创建数据库.表.存储过程.视图.索引.规则.修改表.查看数据等的方法.所要增加的控件如下: Imports System.DataImports System.Data.SqlClient Public Class Form1  Inherits System.Windows.Forms.Form  Private ConnectionString As String = "Data Source=.;Initial Cata

oracle语句-初用oracle和PL/SQL 网上找了个分页存储过程,直接拿过来怎么报错。。求解

问题描述 初用oracle和PL/SQL 网上找了个分页存储过程,直接拿过来怎么报错..求解 直接上代码` create or replace package p_page is TYPE type_cur IS REF CURSOR; --定义游标变量用于返回记录集 PROCEDURE Pagination(Pindex in number --分页索引 Psql in varchar2 --产生dataset的sql语句 Psize in number --页面大小 Pcount out n

SQL Server中将数据导出为XML和Json方法分享_MsSql

    有时候需要一次性将SQL Server中的数据导出给其他部门的也许进行关联或分析,这种需求对于SSIS来说当然是非常简单,但很多时候仅仅需要一次性导出这些数据而建立一个SSIS包就显得小题大做,而SQL Server的导入导出工具其中BUG还是蛮多的,最简单的办法是BCP.  数据导出为XML     在SQL Server 2005之后提供了一个for xml子句在关系数据库中原生支持XML.通过该命令可以将二维关系结果集转换为XML,通过BCP就可以将数据存为XML了. 例如下面的数

SQL Server中数据行批量插入脚本的存储实现_MsSql

无意中看到朋友写的一篇文章"将表里的数据批量生成INSERT语句的存储过程的实现".我仔细看文中的两个存储代码,自我感觉两个都不太满意,都是生成的单行模式的插入,数据行稍微大些性能会受影响的.所在公司本来就存在第二个版本的类似实现,但是是基于多行模式的,还是需要手工添加UNAION ALL来满足多行模式的插入.看到这篇博文和基于公司数据行批量脚本的存储的缺点,这次改写和增强该存储的功能.    本存储运行于SQL Server 2005或以上版本,T-SQL代码如下: IF OBJEC

SQL Server中数据行批量插入脚本的存储实现

无意中看到朋友写的一篇文章"将表里的数据批量生成INSERT语句的存储过程的实现".我仔细看文中的两个存储代码,自我感觉两个都不太满意,都是生成的单行模式的插入,数据行稍微大些性能会受影响的.所在公司本来就存在第二个版本的类似实现,但是是基于多行模式的,还是需要手工添加UNAION ALL来满足多行模式的插入.看到这篇博文和基于公司数据行批量脚本的存储的缺点,这次改写和增强该存储的功能. 本存储运行于SQL Server 2005或以上版本,T-SQL代码如下: IF OBJECT_I

SQL Server中将数据导出为XML和Json方法分享

有时候需要一次性将SQL Server中的数据导出给其他部门的也许进行关联或分析,这种需求对于SSIS来说当然是非常简单,但很多时候仅仅需要一次性导出这些数据而建立一个SSIS包就显得小题大做,而SQL Server的导入导出工具其中BUG还是蛮多的,最简单的办法是BCP. 数据导出为XML 在SQL Server 2005之后提供了一个for xml子句在关系数据库中原生支持XML.通过该命令可以将二维关系结果集转换为XML,通过BCP就可以将数据存为XML了. 例如下面的数据: 我们可以通过