Quantcast
Channel: Forum Getting started with SQL Server
Viewing all articles
Browse latest Browse all 7129

increase bulk insert limit

$
0
0

hi,

i have a database script that create and fill data tables with bulk insert like this :

INSERT INTO MYTABLE (Field1, Field2, Field3) VALUES
	(v1, v2, v3),
	(v1, v2, v3),
	(v1, v2, v3),
	(v1, v2, v3),
        ... etc

some tables are just about 5/6000 rows, but i have an error complaining about insert limit reached .

is there a way to increase that limit from the script ?

thanks and good day


Viewing all articles
Browse latest Browse all 7129

Trending Articles