31

Afaik, SQLite stores a single database in a single file. Since this would decrease the performance when working with large databases, is it possible to explicitly tell SQLite not to store the whole DB in a single file and store different tables in different files instead?

2
  • 1
    Why you need it? what is the functionality which can not be achieved/Or issues that can occur by using the single DB file? Feb 23, 2012 at 10:10
  • 2
    I'm planning to replace an Oracle DB with SQLite. Thousands of transactions will throughout the day and I'm afraid that reading and writing a single file will slow down the process. Anyway it seems that SQLite won't be the best option to handle such a large database.
    – thameera
    Feb 23, 2012 at 14:16

3 Answers 3

45

I found out, that it is possible.

Use:

sqlite3.exe MainDB.db

ATTACH DATABASE 'SomeTableFile.db' AS stf;

Access the table from the other database file:

SELECT * FROM stf.SomeTable;

You can even join over several files:

SELECT *
FROM MainTable mt
JOIN stf.SomeTable st
ON (mt.id = st.mt_id);

https://www.sqlite.org/lang_attach.html

tameera said there is a limit of 62 attached databases but I never hit that limit so I can't confirm that.

The big advantage besides some special cases is that you limit the fragmentation in the database files and you can use the VACUUM command separately on each table!

1
  • 4
    Apparently there is a limit switch to limit the number of databases that can be attached to a connection SQLITE_LIMIT_ATTACHED. Maybe tameera hit that limit in the test?
    – Sampath
    Apr 20, 2017 at 11:14
7

If you don't need a join between these tables you can manually split the DB and say which tables are in which DB (=file).

I don't think that it's possible to let SQLite split your DB in multiple files, because you connect to a DB by telling the filename.

1
  • Can't afford to have tables as different DBs. Also the number of maximum attached databases is limited to 62 in SQLite. :(
    – thameera
    Feb 23, 2012 at 14:18
4

SQLite database files can grow quite large without any performance penalties.

The things that might degrade performance are:

  • file-locking contention
  • table size (if using indexes and issuing write queries)

Also, by default, SQLite limits the number of attached databases to 10.

Anyway, try partition your tables. You'll see that SQLite can grow enormously this way.

1
  • As far as I understand from the linked post, the partitioning concept is self-implemented. SQLite has no build-in partitioning support like some other RDBMSs. Correct? Jun 15, 2017 at 8:16

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

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