Note that there are some explanatory texts on larger screens.

plurals
  1. POT-SQL Transaction with many (1000+) INSERTS gets disconnected
    primarykey
    data
    text
    <p>Is there a limit on the number of INSERT statements you can put inside a transaction? I am getting a transport error and the connection disconnects in the middle of running the statement.</p> <p>Should I just populate a temp table and then run a single INSERT statement?</p> <p>Error Message in the middle of a 1000+ insert inside a transaction...</p> <pre><code>Msg 233, Level 20, State 0, Line 0 A transport-level error has occurred when receiving results from the server. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) </code></pre> <p>I run the script inside SQL Server 2008 R2 10.50.4000.0 against a database on my local Windows 8 machine (Toshiba Satellite S955, x64 8GB RAM, Intel (R) Core(TM) i5-3317U CPU @ 1.70GHz 1.70 GHz)</p> <pre><code>declare @currentDatabase nvarchar(255); select @currentDatabase = DB_NAME(); if CHARINDEX('canada', @currentDatabase) = 0 begin print 'Please run this script on the Canada server' return end begin try begin transaction SET IDENTITY_INSERT company_name ON insert into company_name (company_name_id, company_name, display_index, approved_by_administrator, requestor_id, modify_timestamp, active, create_timestamp) values (10000601010001, '6 Day Dental', 5868, 1, NULL, '2013-04-08 00:00:00.000', 1, '2013-04-08 00:00:00.000'); insert into company_name (company_name_id, company_name, display_index, approved_by_administrator, requestor_id, modify_timestamp, active, create_timestamp) values (10000601010002, '7-Eleven', 5869, 1, NULL, '2013-04-08 00:00:00.000', 1, '2013-04-08 00:00:00.000'); insert into company_name (company_name_id, company_name, display_index, approved_by_administrator, requestor_id, modify_timestamp, active, create_timestamp) values (10000601010003, 'AC Properties', 5870, 1, NULL, '2013-04-08 00:00:00.000', 1, '2013-04-08 00:00:00.000'); -- 1287 more INSERT statements... SET IDENTITY_INSERT company_name OFF commit end try begin catch rollback declare @Msg nvarchar(max) select @Msg=Error_Message(); raiserror('Error Occured: %s', 20, 101,@Msg) with log end catch </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload