vote up 3 vote down star

Has open source ever created a single file database that has better performance when handling large sets of sql queries that aren't delivered in formal SQL transaction sets? I work with a .NET server that does some heavy replication of thousands of rows of data from another server and it does so it a 1-by-1 fashion without formal SQL transactions. So, therefore I cannot use SQLite or FirebirdDB or JavaDB because they all don't automatically batch the transactions and therefore the performance is dismal. Each insert waits for the success of the previous one, etc. So, I am forced to use a heavier database like SQLServer, MySQL, Postgres, or Oracle.

Does anyone know of a flat file database (that has a JDBC connect driver) that would support auto batching transactions and solve my problem?

The main think I dont like about the heavier databases is the lack of the ability to see inside the database with a one-mouse-click operation, like you can with SQLLite.

I tried creating a SQLite database and then set PRAGMA read_uncommitted=TRUE; and it didn't result in any performance improvement.

flag

56% accept rate
1  
"Open source" whoever that is ;-) has created a minimum of three solutions for even the most out-of-mainstream need; but some of these may be in a state of abandon of disrepair. (I'm not poo-pooing OS in any way, this high ratio of of "waste" is part of the -great- deal). More to the point, rather than locating a odd dbms, why not implementing a thin layer atop one of the ones you mention, to introduce this batching feature? In this fashion you solve the problem while keeping a well known system. – mjv Nov 3 at 19:27
2  
Hopefully, Open Source will see this question and answer it. :) – BobbyShaftoe Nov 3 at 19:38
Bear in mind that, if you have odd needs in Open Source software, you can always fix them for yourself, which is an advantage over proprietary software. – David Thornley Nov 3 at 21:27

2 Answers

vote up 3 vote down

I think thank Firebird can work for this.

Firebird have good dotnet provider and many solution for replication

May be you can read this article for Firebird transaction

link|flag
vote up 1 vote down

Try hypersonic DB - http://hsqldb.org/doc/guide/ch02.html#N104FC

link|flag

Your Answer

Get an OpenID
or

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