Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to insert 15530 record in a certain table using SQLite3 shell but i get that error , I searched for the solution SQLITE_MAX_COMPOUND_SELECT which defaults to 500 is the reason , but i don't know how to change it using Shell.

"Error: too many terms in compound SELECT"

http://desmond.imageshack.us/Himg861/scaled.php?server=861&filename=sqlite.jpg&res=landing

INSERT INTO table_name (my_id, my_name) VALUES (1, 'Aaliyah'), (2, 'Alvar Aalto'), (3, 'Willie Aames'), ... (15530, 'name');

share|improve this question
The SQLITE_MAX_COMPOUND_SELECT setting is not your problem. You need to reduce the number of terms in your SELECT statement. Show us the code you are using. – Robert Harvey Apr 10 '12 at 5:52

3 Answers

up vote 2 down vote accepted

INSERT INTO doesn't work that way.

Try this:

BEGIN TRANSACTION
INSERT INTO author (author_id, author_name) VALUES (1, 'Aaliyah')
INSERT INTO author (author_id, author_name) VALUES (2, 'Alvar Aalto')
INSERT INTO author (author_id, author_name) VALUES (3, 'Willie Aames')
...
END TRANSACTION

http://www.sqlite.org/lang_insert.html

share|improve this answer
Thanks, That really made me think differently and rewrite the query to match this – الحمد لله Apr 10 '12 at 6:21

The multiple-value INSERT INTO syntax was introduced in SQLite 3.7.11, so the original syntax is fine on recent versions of SQLite. On older versions, you can use an alternative syntax.

However, the limit SQLITE_MAX_COMPOUND_SELECT cannot be raised at runtime, so you need to split your inserts into batches of 500 rows each. This will be more efficient than inserting one row per query. E.g.

BEGIN;
INSERT INTO table_name (id, name) VALUES (1, 'foo'), ..., (500, 'bar');
INSERT INTO table_name (id, name) VALUES (501, 'baz'), ..., (1000, 'zzz');
...
COMMIT;
share|improve this answer

Let me propose to you a much more efficient INSERT query for your needs:

INSERT INTO table_name (my_id, my_name)
SELECT 1, 'Aaliyah'
UNION ALL
SELECT 2, 'Alvar Aalto'
UNION ALL
SELECT 3, 'Willie Aames'
.
.
.
UNION ALL
SELECT 15530, 'name'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.