Re: [sqlite] Any advantage to pre-sorting data before loading and indexing it?

2009-02-17 Thread python
Stefan and Michael, Thank you very much for your feedback. Regards, Malcolm ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Any advantage to pre-sorting data before loading and indexing it?

2009-02-17 Thread Michael Schlenker
pyt...@bdurham.com schrieb: > Is there any advantage to having data pre-sorted (in index order) > before loading it into SQLite and indexing it? Or does indexing > work best if the index values are randomly ordered at data load > time? Random order might help you with some multi-user databases,

Re: [sqlite] Any advantage to pre-sorting data before loading and indexing it?

2009-02-17 Thread Stefan Evert
On 17 Feb 2009, at 15:34, pyt...@bdurham.com wrote: > Is there any advantage to having data pre-sorted (in index order) > before loading it into SQLite and indexing it? Or does indexing > work best if the index values are randomly ordered at data load > time? From my own experience, there's a

[sqlite] Any advantage to pre-sorting data before loading and indexing it?

2009-02-17 Thread python
Is there any advantage to having data pre-sorted (in index order) before loading it into SQLite and indexing it? Or does indexing work best if the index values are randomly ordered at data load time? Thanks, Malcolm ___ sqlite-users mailing list