sql-generate-insert icon indicating copy to clipboard operation
sql-generate-insert copied to clipboard

Limit on inserts 1000 error in sql server

Open maximnl opened this issue 4 years ago • 0 comments

Sql server limits number of rows that can be inserted in a single insert to 1000 rows

solution enclose the value block into

SELECT * FROM ( VALUES (...), (...) ) as TEMP (col1 ,col2,col3...)

maximnl avatar Oct 28 '21 15:10 maximnl