Top "Multiple-insert" questions

Use this tag for questions about inserting multiple rows in a single statement into an SQL database.

MySQL - how many rows can I insert in one single INSERT statement?

Does it depend on the number of values sets? Does it depend on the number of bytes in the INSERT …

mysql multiple-insert
How should I multiple insert multiple records?

I have a class named Entry declared like this: class Entry{ string Id {get;set;} string Name {get;set;} } and …

c# sql-server-2005 ado.net multiple-insert
While inserting multiple rows what does the statement 'select 1 from dual' do?

While inserting multiple rows into a table using the following style : insert all into ghazal_current (GhazalName,Rating) values('Ajab …

sql oracle oracle11g multiple-insert
Inserting multiple rows with sequence in Oracle

This is the query i have used for insert multiple rows in oracle database. But when am using sequence within …

oracle sequence multiple-insert
MySQL's AUTO_INCREMENT behavior in a multiple row insert

I think the answer to my question is obvious but since I could not find any documentation to support it, …

mysql auto-increment multiple-insert
SQL Server: multiple INSERT with MERGE

I'm trying to write bridge between MySQL database and SQL Server 2008 R2 to sync values in tables. I got stuck …

sql-server sql-server-2008-r2 on-duplicate-key multiple-insert