I'm trying to load roughly 10,000 entries into a SQL Server table, and have found it doesn't allow loading over 1,000 row values. The error is shown below:
The number of row value expressions in the INSERT statement exceeds the maximum allowed number of 1000 row values.
Currently I'm trying to run a simple SQL script inside Data Studio.
INSERT INTO [<table>] (<COLUMNS>)
VALUES (<rows>)
I was wondering if there was any way to bypass this error within SQL Server, or if I need a separate script which then loads the data onto the server.