SQL SERVER 2008 R2 插入数据非常慢
Posted 咸蛋超哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL SERVER 2008 R2 插入数据非常慢相关的知识,希望对你有一定的参考价值。
表是5字段int类型,第一个字段是主健,自增字段
表结构:
id int Unchecked
billno bigint Unchecked
opid int Checked
billopid int Checked
tag int Checked
存储过程:
CREATE proc [dbo].[inbill]
@bills bigint,
@bille bigint,
@billopid int,
@result int output,
@incount int output
as
begin
set @result = (select COUNT(*) from bill where billno >= @bills and billno<[email protected])
set @incount = 0
if @result = 0
begin
while @bills + @incount <= @bille
begin
insert into bill (billno,billopid) values (@bills + @incount,@billopid)
set @incount = @incount + 1
end
end
end
以上是关于SQL SERVER 2008 R2 插入数据非常慢的主要内容,如果未能解决你的问题,请参考以下文章
在 SQL Server 2008 R2 的 MERGE 语句中更新插入的记录
SQL Server 2008R2 sys.dm_exec_procedure_stats - 上次执行时间异常