Tagged Questions
The in-memory-database tag has no wiki summary.
19
votes
1answer
432 views
In C#, is there any way to have an in-memory file linked as an in-memory SQLite database with System.Data.SQLite?
What I want to do is something along the lines of the following:
using System.Data.SQLite;
using System.IO;
//My SQLite connection
SQLiteConnection myCon;
public void ReadAndOpenDB(string filename)
...
11
votes
3answers
1k views
In-Memory DB for Entity Framework 4
Does anyone know of a good in-memory DB that works well with .NET 4/EF 4? Specifically, I'm thinking of unit testing, such that each setup can easily create the DB, and populate it with default ...
7
votes
3answers
2k views
How to shutdown Derby In Memory Database Properly
I'm using derby as an embedded database. Furthermore, I'm using it's in memory database option for my unit tests.
What I can't figure out is how to properly shut down (A quick look at the code) the ...
7
votes
3answers
3k views
Alternative to the TimesTen in memory database
I just found "Has anyone published a
detailed comparison between different
in-memory RDBMSs?" that is related
to my question.
TimesTen (see also) is a In-Memory Database from oracle.
It ...
7
votes
6answers
3k views
Has anyone published a detailed comparison between different in-memory RDBMSs?
There are quite a few independent and not-so-independent studies comparing traditional RDBMSs but I haven't managed to find any good material on in-memory databases. I am primarily interested in ones ...
6
votes
4answers
2k views
Create an in-memory database structure from an Oracle instance
I have an application where many "unit" tests use a real connection to an Oracle database during their execution.
As you can imagine, these tests take too much time to be executed, as they need to ...
6
votes
3answers
417 views
in-memory database in Python
I'm doing some queries in Python on a large database to get some stats out of the database. I want these stats to be in-memory so other programs can use them without going to a database.
I was ...
6
votes
9answers
500 views
Why would someone need an in-memory database?
I read that a few databases can be used in-memory but can't think of reason why someone would want to use this feature. I always use a database to persist data and memory caches for fast access.
6
votes
4answers
189 views
Techniques for querying a set of object in-memory in a Java application
We have a system which performs a 'coarse search' by invoking an interface on another system which returns a set of Java objects. Once we have received the search results I need to be able to further ...
6
votes
2answers
137 views
has anyone produced an in-memory GIT repository?
I would like to be able to take advantage of the benefits of GIT (and its workflows), but without the cost of disk access - I just would like to leverage the distributed revision control capabilities ...
6
votes
4answers
578 views
When should I consider using a in memory database and what are the issue to look out for?
I was just think that now it is common to have enough RAM on your database server to cache your complete database why are the specialist in memory database (e.g TimesTen, see also Wikipedia page) ...
6
votes
11answers
2k views
Need an embedded/In Memory Database
I need an embedded/In Memory Database which support multithread access.
Thanks!
Leo
5
votes
2answers
1k views
How to connect to Play Framework in-memory database using JDBC?
I use the in-memory database that comes with Play Framework, when I have db=mem in the configuration file, for development.
How can I connect to this database using JDBC? and not the JPA that is the ...
5
votes
4answers
222 views
looking for a stand-alone, in-memory data server with sequential access
We need an in-memory data structure / DB server with following characteristics:
stand-alone server: will run on the same machine as the clients, so any kind of IPC is ok
sequential access: get ...
5
votes
3answers
2k views
How do I create a sqllite3 in-memory database?
One of the appropriate uses for sqlite3 is "in-memory databases". This sounds like a really useful tool for my C++ applications. Does anyone have an example of how this is done in C or C++? I'm ...
4
votes
2answers
70 views
Looking for in-memory scalable object repository with up to 150 million small objects in .net
I am currently working on a data management system that needs to calculate huge amounts of data: think of an excel sheet with about 150 million cells with data.
We use a sql server database to store ...
3
votes
3answers
109 views
Optimize QSql of memory database in multiprocessor-thread
Here's my problem, I have one sqlite memory database by using QSql. I have several threads each handling one different table of this common database. And I use Win API to make sure these threads ...
3
votes
3answers
479 views
View content of H2 or HSQLDB in-memory database
Is there a way to browse the content of an H2 or an HSQLDB in-memory database for viewing? For example, during a debugging session with Hibernate in order to check when the flush is executed; or to ...
3
votes
7answers
275 views
seeking recommendations for simple in-memory DB *server* (no persistence needed)
Should support multiple connections, preferably via ODBC. The clients will be running as separate processes on the same machine. No need for persistence, as the the clients will handle the persistence ...
3
votes
4answers
791 views
In django, how do I call the subcommand 'syncdb' from the initialization script?
I'm new to python and django, and when following the Django Book I learned about the command 'python manage.py syncdb' which generated database tables for me. In development environment I use sqlite ...
3
votes
3answers
173 views
Best practice for inserting and querying data from memory
We have an application that takes real time data and inserts it into database. it is online for 4.5 hours a day. We insert data second by second in 17 tables. The user at any time may query any table ...
3
votes
5answers
145 views
php java in memory database
i need to load data as array to memory in PHP.but in PHP if i write $array= array("1","2"); in test.php then this $array variable
is initialized every time user requests.if we request test.php 100 ...
3
votes
2answers
227 views
Container for database-like searches
I'm looking for some STL, boost, or similar container to use the same way indexes are used in databases to search for record using a query like this:
select * from table1 where field1 starting with ...
2
votes
1answer
40 views
SQL support cache with fallback to a database
Is there any product which can be queries using JDBC (normal SQL), it sees whether all the tables in the query are in CACHED tables, and use the cache, otherwise fallback to the back-end database.
I ...
2
votes
2answers
117 views
How to SELECT data from in-memory Derby database table?
I have created an in-memory database table using JavaDB/Derby. I can INSERT data into the table. But it doesn't work when I try to SELECT data from the table.
I create the table with:
DECLARE GLOBAL ...
2
votes
1answer
68 views
HSQLDB clear table data after restart
I want to save some temporary data in memory, which should be removed after server shuts down.
There is a temporary table in HSQLDB, but the data is removed immediately after transaction committed, ...
2
votes
2answers
59 views
In-memory vs Caching for an ASP.net application
My web application is using a SQL Server database that has around 2000 rows. I wanted to know if its better to load all the DB to the RAM (Store it in a static var) and query it using ASP.NET LINQ. I ...
2
votes
3answers
214 views
Very fast thread-safe collection or in-memory db needed
I get data from external application:
class DataItem
{
public string key;
public int Attribute1;
public string Attribute2;
}
One thread store it in collection.
Other threads (3-10) query ...
2
votes
1answer
404 views
Load CSV file located in the classpath for H2 Database
For tests purposes, I want to create and fill some tables using SQL scripts as well as CSV files.
So I created a SQL script like this one:
CREATE TABLE T_FOO (
...
) as select * from ...
2
votes
4answers
1k views
JUnit + Derby + Spring: drop in-memory db after every test
In my unit tests I autowired some DataSources, which use URLs like
jdbc:derby:memory:mydb;create=true
to create an in-memory DBs.
To drop an in-memory Derby db you have to connect with:
...
2
votes
1answer
438 views
Does anybody have any experience with FastDB (C++ in-memory database)?
FastDB is an open-source, in-memory database that's tightly integrated with C++ (it supports a SQL-like query language where tables are classes and rows are objects). Like most IMDBs, it's meant for ...
2
votes
1answer
415 views
Using PDO Sqlite in-memory Db for PHPUnit tests
I recently got PHPUnit working with xDebug for testing my Zend Framework applications. The fact I use ZF shouldn't make any difference to this question- just mentioned it for completeness.
Anyway, it ...
2
votes
3answers
860 views
Simple and reliable in memory database for fast java integration tests with support for JPA
My integration tests would run much faster if I used in-memory-database instead of PostgreSQL. I use JPA (Hibernate) and I need an in-memory-database that would be easy to switch to using JPA, easy to ...
2
votes
2answers
208 views
Good scalable fault-tolerant in-memory database with LINQ support for .NET
Are there are good in-memory transactional databases that support LINQ and SQL Server persistance? I'd like to create a full representation of a large data store in memory and have it commit to a SQL ...
2
votes
1answer
132 views
Are there any in-memory databases that support computed columns?
We have a SQL 2005/2008 database that has a table with a computed column. We're using the computed column as a discriminator in NHibernate so having it in the database is proving to be very useful.
...
2
votes
2answers
613 views
Main Memory DB vs Object DB
I'm currently trying to pick a database vendor.
I'm just seeking some personal opinions from fellow database developers out there.
My question is especially targeted towards people who:
1) have ...
2
votes
3answers
1k views
In-memory Java database that I can persist (as a single huge blob of memory)
I am looking for an in-memory relational (SQL) database for Java (something like HSQLDB), whose whole state I can serialise.
wholeDatabase.serialize(outputStream);
...
1
vote
1answer
23 views
using in-memory data-structures
I have a client requirement of
not to use an RDBMS, but instead do everything using in-memory data-structures If the server is restarted then the application state will revert to the last state ...
1
vote
1answer
45 views
Is there a thread lock for QSqlQuery when using memory sqlite database
When I use several QSqlQuery querying and inserting in different table of the same memory sqlite database, it seems that there's a thread-safe lock so I cannot speed up my program.
I use Windows API ...
1
vote
1answer
32 views
Is it possible to instruct libmysqld (embedded MySql DB engine) to work with an in-memory database?
I have a zip archive with MySQL database files in it. I successfully read the database with libmysqld after I unzip the archive contents.
My question is this - does libmysqld understand the notion of ...
1
vote
2answers
49 views
In-Memory SQLite and NHibernate
I am kind of lost here.
I searched some information, appearently there are several SQLite GUI tool to create SQLite DB file. Meanwhile I also noticed NHibernate comes with an in-memory configuration ...
1
vote
1answer
154 views
How to create an in-memory database table using Derby?
I would like to create an in-memory database for testing purposes using Derby/JavaDB. I have read Java DB Developer's Guide: Using in-memory databases and tested with this code with derby.jar from ...
1
vote
1answer
53 views
Where is the HttpSession data stored?
HttpSession is a high level interface built on top of cookies and url-rewriting, which means that there is only a session ID is stored in client side and the data associated with it is stored in ...
1
vote
2answers
97 views
Traversing a scheme-like tree (graph) dump using C
I have a Scheme-like tree graph structure. I want to parse it using C into some in-memory representation and walk over it.
It there any library or front-end of parser to do this?
EDIT:
I have ...
1
vote
0answers
33 views
How do I find out which tables are modified by a cascaded deletion in Derby?
I have the need to obtain the names of modified tables caused by the cascade deletion. It happens that the DB in use is the latest version of derby 10.8 in the in-memory mode.
The reason for this ...
1
vote
2answers
128 views
Loading on-disk SQLite database into in-memory database and syncing back
I have a SQLite database that has pretty intensive repeated reads and occasional writes. However, the writes (because of indexing) tend to block the reads. I would like to read the on-disk database ...
1
vote
3answers
296 views
Concept of In Memory Database and how to see if my data is being populated in HSQL DB?
I am using HSQL in memory database for test purpose of my application and using SQL Server as main database, now when am doing test then HSQL Database is being populated with same data that I have in ...
1
vote
2answers
225 views
Is there a free, high-performance, SQL queriable, .NET in-memory RDBMS? [closed]
Similar questions:
Good scalable fault-tolerant in-memory database with LINQ support for .NET
Alternative to the TimesTen in memory database
Virtual Database in Memory
SQLite Performance Benchmark ...
1
vote
1answer
85 views
How to use HSQLDB to dynamically generate tables for JDBC application
I want to use HyperSQL as an in-memory database for integration tests of a Java - JDBC application.
If I try the following:
Properties props = new Properties();
props.put("user", "sa");
...
1
vote
3answers
177 views
Django In-Memory SQLite3 Database
I'm trying to have a purely in-memory SQLite database in Django, and I think I have it working, except for an annoying problem:
I need to run syncdb before using the database, which isn't too much of ...