Search
Submit a request
Sign in
How can we help you today?
Categories
Submit a request
Submit a request
Sign in
Support
Community
SQL Prompt
Why does the sql prompt "Script as Insert" keep repeating the insert into in the generated script
New post
for example
Insert into #temptable
Values(1)
Insert into #temptable
Values(2)
There used to be one insert statement and 2 values statements in this case.
doug
December 29, 2020 17:02
-
0
+
Comments
2 comments
Sort by
Date
Votes
The rows returned were more than the 1000 limit for the values statement.
Homer
December 29, 2020 20:21
-
0
+
Thanks @Homer!
As you mentioned, t
he maximum number of rows you can insert in one statement is 1000 when using INSERT INTO ... VALUES... which is the reason why multiple INSERT INTO statements were generated.
<br><br><br>
Jessica R
December 30, 2020 18:28
-
0
+
Add comment
Please
sign in
to leave a comment.
Insert into #temptable
Values(1)
Insert into #temptable
Values(2)
There used to be one insert statement and 2 values statements in this case.