Looking for a database in memory with the same SQL syntax as Oracle

I am looking for a database in memory that can be used to automatically test legacy ADO.NET code against Oracle. Thus, the in-memory database must have the same SQL syntax as Oracle.

Any suggestions?

+3
source share
2 answers

Ok Oracle IMDB Cache is the perfect product. I think that automated testing will require a license, but see what you can discuss with your local Oracle sales representative.

But I would start with normal DB mode, NOARCHIVELOG. Perhaps using temp and logs on some form of RAM disk, since you don't need recovery.

Oracle Support, , (.. ).

+3

Oracle TimesTen , , , Oracle RDBMS.

+2

Source: https://habr.com/ru/post/1787148/


All Articles