在我的應用程序使用TADOQuery使用select(MSSQL)與它的TClientdataSet聯繫。我必須插入大約百萬條記錄和ApplyUpdates。的TClientdataSet和大插入
所以,我在SQL Server事件探查看到了什麼?我看到,對於每個插入的行,我們有3個查詢:sp_prepare插入腳本,sp_execute它與一些值和sp_unprepare。
我只想準備sql 一次所有的記錄在插入之前和之後進行一番對比。我該怎麼做?
添加後:
在查詢我對存儲過程執行的腳本:
tmpQuery := DefineQuery(FConnection, [
'exec up_getOperatorDataSet ',
' @tablename = :tablename, ',
' @operator = :operator, ',
' @forappend = :forappend, ',
' @withlinksonly = :withlinksonly, ',
' @ids = :ids '
], [
Param(ftString, sTableName),
Param(ftInteger, FOperatorId),
Param(ftBoolean, opForAppendOnly in OpenParams),
Param(ftBoolean, opOnlyWithModelLinks in OpenParams),
Param(ftString, sIds)
], Result);
它選擇所有從表sTableName等領域的一些參數。
步驟1:
declare @p1 int
set @p1=486
exec sp_prepare @p1 output,N'@P1 int,@P2 int,@P3 datetime,@P4 int,@P5 int,@P6 int,@P7 int,@P8 int,@P9 varchar(128),@P10 bit,@P11 numeric(19,4),@P12 smallint,@P13 smallint,@P14 smallint,@P15 smallint',N'insert into parser_prices
(operator_id, request_id, date, nights, model_hotel_id, model_meal_id, model_room_id, model_htplace_id, spo, hotelstop, price, frout_econom, frout_business, frback_econom, frback_business)
values
(@P1, @P2, @P3, @P4, @P5, @P6, @P7, @P8, @P9, @P10, @P11, @P12, @P13, @P14, @P15)
',1
select @p1
步驟2:
exec sp_execute 486,21,2000450,'2009-12-04 00:00:00',14,2118,22,-9555,18,'2009-10.MSK.Bali.13.10.09-27.03.10',0,15530.0000,3,3,3,3
步驟3:將來自分析器插入的
例
exec sp_unprepare 486
,它是所有的新行。
我們可以看到一個腳本的例子嗎?您應該可以對其進行參數化,在這種情況下,您可以先進行預先分析,然後在重新執行之前每次更改參數。 – 2009-11-06 13:29:46
添加了一些細節。 – silent 2009-11-06 13:56:34