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),
... etcsome 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