@advanced_1000_h1 Advanced Topics @advanced_1001_a Result Sets @advanced_1002_a Large Objects @advanced_1003_a Linked Tables @advanced_1004_a Transaction Isolation @advanced_1005_a Multi-Version Concurrency Control (MVCC) @advanced_1006_a Clustering / High Availability @advanced_1007_a Two Phase Commit @advanced_1008_a Compatibility @advanced_1009_a Run as Windows Service @advanced_1010_a ODBC Driver @advanced_1011_a ACID @advanced_1012_a Durability Problems @advanced_1013_a Using the Recover Tool @advanced_1014_a File Locking Protocols @advanced_1015_a Protection against SQL Injection @advanced_1016_a Restricting Class Loading and Usage @advanced_1017_a Security Protocols @advanced_1018_a Universally Unique Identifiers (UUID) @advanced_1019_a Settings Read from System Properties @advanced_1020_a Setting the Server Bind Address @advanced_1021_a Glossary and Links @advanced_1022_h2 Result Sets @advanced_1023_h3 Limiting the Number of Rows @advanced_1024_p Before the result is returned to the application, all rows are read by the database. Server side cursors are not supported currently. If only the first few rows are interesting for the application, then the result set size should be limited to improve the performance. This can be done using LIMIT in a query (example: SELECT * FROM TEST LIMIT 100), or by using Statement.setMaxRows(max). @advanced_1025_h3 Large Result Sets and External Sorting @advanced_1026_p For result set larger than 1000 rows, the result is buffered to disk. If ORDER BY is used, the sorting is done using an external sort algorithm. In this case, each block of rows is sorted using quick sort, then written to disk; when reading the data, the blocks are merged together. @advanced_1027_h2 Large Objects @advanced_1028_h3 Storing and Reading Large Objects @advanced_1029_p If it is possible that the objects don't fit into memory, then the data type CLOB (for textual data) or BLOB (for binary data) should be used. For these data types, the objects are not fully read into memory, by using streams. To store a BLOB, use PreparedStatement.setBinaryStream. To store a CLOB, use PreparedStatement.setCharacterStream. To read a BLOB, use ResultSet.getBinaryStream, and to read a CLOB, use ResultSet.getCharacterStream. If the client/server mode is used, the BLOB and CLOB data is fully read into memory when accessed. In this case, the size of a BLOB or CLOB is limited by the memory. @advanced_1030_h2 Linked Tables @advanced_1031_p This database supports linked tables, which means tables that don't exist in the current database but are just links to another database. To create such a link, use the CREATE LINKED TABLE statement: @advanced_1032_p It is then possible to access the table in the usual way. There is a restriction when inserting data to this table: When inserting or updating rows into the table, NULL and values that are not set in the insert statement are both inserted as NULL. This may not have the desired effect if a default value in the target table is other than NULL. @advanced_1033_p For each linked table a new connection is opened. This can be a problem for some databases when using many linked tables. For Oracle XE, the maximum number of connection can be increased. Oracle XE needs to be restarted after changing these values: @advanced_1034_h2 Transaction Isolation @advanced_1035_p This database supports the following transaction isolation levels: @advanced_1036_b Read Committed @advanced_1037_li This is the default level. Read locks are released immediately. Higher concurrency is possible when using this level. @advanced_1038_li To enable, execute the SQL statement 'SET LOCK_MODE 3' @advanced_1039_li or append ;LOCK_MODE=3 to the database URL: jdbc:h2:~/test;LOCK_MODE=3 @advanced_1040_b Serializable @advanced_1041_li To enable, execute the SQL statement 'SET LOCK_MODE 1' @advanced_1042_li or append ;LOCK_MODE=1 to the database URL: jdbc:h2:~/test;LOCK_MODE=1 @advanced_1043_b Read Uncommitted @advanced_1044_li This level means that transaction isolation is disabled. @advanced_1045_li To enable, execute the SQL statement 'SET LOCK_MODE 0' @advanced_1046_li or append ;LOCK_MODE=0 to the database URL: jdbc:h2:~/test;LOCK_MODE=0 @advanced_1047_p When using the isolation level 'serializable', dirty reads, non-repeatable reads, and phantom reads are prohibited. @advanced_1048_b Dirty Reads @advanced_1049_li Means a connection can read uncommitted changes made by another connection. @advanced_1050_li Possible with: read uncommitted @advanced_1051_b Non-Repeatable Reads @advanced_1052_li A connection reads a row, another connection changes a row and commits, and the first connection re-reads the same row and gets the new result. @advanced_1053_li Possible with: read uncommitted, read committed @advanced_1054_b Phantom Reads @advanced_1055_li A connection reads a set of rows using a condition, another connection inserts a row that falls in this condition and commits, then the first connection re-reads using the same condition and gets the new row. @advanced_1056_li Possible with: read uncommitted, read committed @advanced_1057_h3 Table Level Locking @advanced_1058_p The database allows multiple concurrent connections to the same database. To make sure all connections only see consistent data, table level locking is used by default. This mechanism does not allow high concurrency, but is very fast. Shared locks and exclusive locks are supported. Before reading from a table, the database tries to add a shared lock to the table (this is only possible if there is no exclusive lock on the object by another connection). If the shared lock is added successfully, the table can be read. It is allowed that other connections also have a shared lock on the same object. If a connection wants to write to a table (update or delete a row), an exclusive lock is required. To get the exclusive lock, other connection must not have any locks on the object. After the connection commits, all locks are released. This database keeps all locks in memory. @advanced_1059_h3 Lock Timeout @advanced_1060_p If a connection cannot get a lock on an object, the connection waits for some amount of time (the lock timeout). During this time, hopefully the connection holding the lock commits and it is then possible to get the lock. If this is not possible because the other connection does not release the lock for some time, the unsuccessful connection will get a lock timeout exception. The lock timeout can be set individually for each connection. @advanced_1061_h2 Multi-Version Concurrency Control (MVCC) @advanced_1062_p The MVCC feature allows higher concurrency than using (table level or row level) locks. When using MVCC in this database, delete, insert and update operations will only issue a shared lock on the table. Table are still locked exclusively when adding or removing columns, when dropping the table, and when using SELECT ... FOR UPDATE. Connections only 'see' committed data, and own changes. That means, if connection A updates a row but doesn't commit this change yet, connection B will see the old value. Only when the change is committed, the new value is visible by other connections (read committed). If multiple connections concurrently try to update the same row, this database fails fast: a concurrent update exception is thrown. @advanced_1063_p To use the MVCC feature, append MVCC=TRUE to the database URL: @advanced_1064_h2 Clustering / High Availability @advanced_1065_p This database supports a simple clustering / high availability mechanism. The architecture is: two database servers run on two different computers, and on both computers is a copy of the same database. If both servers run, each database operation is executed on both computers. If one server fails (power, hardware or network failure), the other server can still continue to work. From this point on, the operations will be executed only on one server until the other server is back up. @advanced_1066_p Clustering can only be used in the server mode (the embedded mode does not support clustering). It is possible to restore the cluster without stopping the server, however it is critical that no other application is changing the data in the first database while the second database is restored, so restoring the cluster is currently a manual process. @advanced_1067_p To initialize the cluster, use the following steps: @advanced_1068_li Create a database @advanced_1069_li Use the CreateCluster tool to copy the database to another location and initialize the clustering. Afterwards, you have two databases containing the same data. @advanced_1070_li Start two servers (one for each copy of the database) @advanced_1071_li You are now ready to connect to the databases with the client application(s) @advanced_1072_h3 Using the CreateCluster Tool @advanced_1073_p To understand how clustering works, please try out the following example. In this example, the two databases reside on the same computer, but usually, the databases will be on different servers. @advanced_1074_li Create two directories: server1 and server2. Each directory will simulate a directory on a computer. @advanced_1075_li Start a TCP server pointing to the first directory. You can do this using the command line: @advanced_1076_li Start a second TCP server pointing to the second directory. This will simulate a server running on a second (redundant) computer. You can do this using the command line: @advanced_1077_li Use the CreateCluster tool to initialize clustering. This will automatically create a new, empty database if it does not exist. Run the tool on the command line: @advanced_1078_li You can now connect to the databases using an application or the H2 Console using the JDBC URL jdbc:h2:tcp://localhost:9101,localhost:9102/test @advanced_1079_li If you stop a server (by killing the process), you will notice that the other machine continues to work, and therefore the database is still accessible. @advanced_1080_li To restore the cluster, you first need to delete the database that failed, then restart the server that was stopped, and re-run the CreateCluster tool. @advanced_1081_h3 Clustering Algorithm and Limitations @advanced_1082_p Read-only queries are only executed against the first cluster node, but all other statements are executed against all nodes. There is currently no load balancing made to avoid problems with transactions. The following functions may yield different results on different cluster nodes and must be executed with care: RANDOM_UUID(), SECURE_RAND(), SESSION_ID(), MEMORY_FREE(), MEMORY_USED(), CSVREAD(), CSVWRITE(), RAND() [when not using a seed]. Those functions should not be used directly in modifying statements (for example INSERT, UPDATE, or MERGE). However, they can be used in read-only statements and the result can then be used for modifying statements. @advanced_1083_h2 Two Phase Commit @advanced_1084_p The two phase commit protocol is supported. 2-phase-commit works as follows: @advanced_1085_li Autocommit needs to be switched off @advanced_1086_li A transaction is started, for example by inserting a row @advanced_1087_li The transaction is marked 'prepared' by executing the SQL statement <code>PREPARE COMMIT transactionName</code> @advanced_1088_li The transaction can now be committed or rolled back @advanced_1089_li If a problem occurs before the transaction was successfully committed or rolled back (for example because a network problem occurred), the transaction is in the state 'in-doubt' @advanced_1090_li When re-connecting to the database, the in-doubt transactions can be listed with <code>SELECT * FROM INFORMATION_SCHEMA.IN_DOUBT</code> @advanced_1091_li Each transaction in this list must now be committed or rolled back by executing <code>COMMIT TRANSACTION transactionName</code> or <code>ROLLBACK TRANSACTION transactionName</code> @advanced_1092_li The database needs to be closed and re-opened to apply the changes @advanced_1093_h2 Compatibility @advanced_1094_p This database is (up to a certain point) compatible to other databases such as HSQLDB, MySQL and PostgreSQL. There are certain areas where H2 is incompatible. @advanced_1095_h3 Transaction Commit when Autocommit is On @advanced_1096_p At this time, this database engine commits a transaction (if autocommit is switched on) just before returning the result. For a query, this means the transaction is committed even before the application scans through the result set, and before the result set is closed. Other database engines may commit the transaction in this case when the result set is closed. @advanced_1097_h3 Keywords / Reserved Words @advanced_1098_p There is a list of keywords that can't be used as identifiers (table names, column names and so on), unless they are quoted (surrounded with double quotes). The list is currently: @advanced_1099_p CURRENT_TIMESTAMP, CURRENT_TIME, CURRENT_DATE, CROSS, DISTINCT, EXCEPT, EXISTS, FROM, FOR, FALSE, FULL, GROUP, HAVING, INNER, INTERSECT, IS, JOIN, LIKE, MINUS, NATURAL, NOT, NULL, ON, ORDER, PRIMARY, ROWNUM, SELECT, SYSDATE, SYSTIME, SYSTIMESTAMP, TODAY, TRUE, UNION, WHERE @advanced_1100_p Certain words of this list are keywords because they are functions that can be used without '()' for compatibility, for example CURRENT_TIMESTAMP. @advanced_1101_h2 Run as Windows Service @advanced_1102_p Using a native wrapper / adapter, Java applications can be run as a Windows Service. There are various tools available to do that. The Java Service Wrapper from Tanuki Software, Inc. ( <a href="http://wrapper.tanukisoftware.org">http://wrapper.tanukisoftware.org</a> ) is included in the installation. Batch files are provided to install, start, stop and uninstall the H2 Database Engine Service. This service contains the TCP Server and the H2 Console web application. The batch files are located in the directory H2/service. @advanced_1103_h3 Install the Service @advanced_1104_p The service needs to be registered as a Windows Service first. To do that, double click on 1_install_service.bat. If successful, a command prompt window will pop up and disappear immediately. If not, a message will appear. @advanced_1105_h3 Start the Service @advanced_1106_p You can start the H2 Database Engine Service using the service manager of Windows, or by double clicking on 2_start_service.bat. Please note that the batch file does not print an error message if the service is not installed. @advanced_1107_h3 Connect to the H2 Console @advanced_1108_p After installing and starting the service, you can connect to the H2 Console application using a browser. Double clicking on 3_start_browser.bat to do that. The default port (8082) is hard coded in the batch file. @advanced_1109_h3 Stop the Service @advanced_1110_p To stop the service, double click on 4_stop_service.bat. Please note that the batch file does not print an error message if the service is not installed or started. @advanced_1111_h3 Uninstall the Service @advanced_1112_p To uninstall the service, double click on 5_uninstall_service.bat. If successful, a command prompt window will pop up and disappear immediately. If not, a message will appear. @advanced_1113_h2 ODBC Driver @advanced_1114_p This database does not come with its own ODBC driver at this time, but it supports the PostgreSQL network protocol. Therefore, the PostgreSQL ODBC driver can be used. Support for the PostgreSQL network protocol is quite new and should be viewed as experimental. It should not be used for production applications. @advanced_1115_p At this time, the PostgreSQL ODBC driver does not work on 64 bit versions of Windows. For more information, see: <a href="http://svr5.postgresql.org/pgsql-odbc/2005-09/msg00127.php">ODBC Driver on Windows 64 bit</a> @advanced_1116_h3 ODBC Installation @advanced_1117_p First, the ODBC driver must be installed. Any recent PostgreSQL ODBC driver should work, however version 8.2.4 or newer is recommended. The Windows version of the PostgreSQL ODBC driver is available at <a href="http://www.postgresql.org/ftp/odbc/versions/msi">http://www.postgresql.org/ftp/odbc/versions/msi</a> . @advanced_1118_h3 Starting the Server @advanced_1119_p After installing the ODBC driver, start the H2 Server using the command line: @advanced_1120_p The PG Server (PG for PostgreSQL protocol) is started as well. By default, databases are stored in the current working directory where the server is started. Use -baseDir to save databases in another directory, for example the user home directory: @advanced_1121_p The PG server can be started and stopped from within a Java application as follows: @advanced_1122_p By default, only connections from localhost are allowed. To allow remote connections, use <code>-pgAllowOthers true</code> when starting the server. @advanced_1123_h3 ODBC Configuration @advanced_1124_p After installing the driver, a new Data Source must be added. In Windows, run <code>odbcad32.exe</code> to open the Data Source Administrator. Then click on 'Add...' and select the PostgreSQL Unicode driver. Then click 'Finish'. You will be able to change the connection properties: @advanced_1125_th Property @advanced_1126_th Example @advanced_1127_th Remarks @advanced_1128_td Data Source @advanced_1129_td H2 Test @advanced_1130_td The name of the ODBC Data Source @advanced_1131_td Database @advanced_1132_td test @advanced_1133_td The database name. Only simple names are supported at this time; @advanced_1134_td relative or absolute path are not supported in the database name. @advanced_1135_td By default, the database is stored in the current working directory @advanced_1136_td where the Server is started except when the -baseDir setting is used. @advanced_1137_td The name must be at least 3 characters. @advanced_1138_td Server @advanced_1139_td localhost @advanced_1140_td The server name or IP address. @advanced_1141_td By default, only remote connections are allowed @advanced_1142_td User Name @advanced_1143_td sa @advanced_1144_td The database user name. @advanced_1145_td SSL Mode @advanced_1146_td disabled @advanced_1147_td At this time, SSL is not supported. @advanced_1148_td Port @advanced_1149_td 5435 @advanced_1150_td The port where the PG Server is listening. @advanced_1151_td Password @advanced_1152_td sa @advanced_1153_td The database password. @advanced_1154_p Afterwards, you may use this data source. @advanced_1155_h3 PG Protocol Support Limitations @advanced_1156_p At this time, only a subset of the PostgreSQL network protocol is implemented. Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding. Problems are fixed as they are found. Currently, statements can not be cancelled when using the PG protocol. @advanced_1157_p PostgreSQL ODBC Driver Setup requires a database password, that means it is not possible to connect to H2 databases without password. This is a limitation of the ODBC driver. @advanced_1158_h3 Security Considerations @advanced_1159_p Currently, the PG Server does not support challenge response or encrypt passwords. This may be a problem if an attacker can listen to the data transferred between the ODBC driver and the server, because the password is readable to the attacker. Also, it is currently not possible to use encrypted SSL connections. Therefore the ODBC driver should not be used where security is important. @advanced_1160_h2 ACID @advanced_1161_p In the database world, ACID stands for: @advanced_1162_li Atomicity: Transactions must be atomic, meaning either all tasks are performed or none. @advanced_1163_li Consistency: All operations must comply with the defined constraints. @advanced_1164_li Isolation: Transactions must be isolated from each other. @advanced_1165_li Durability: Committed transaction will not be lost. @advanced_1166_h3 Atomicity @advanced_1167_p Transactions in this database are always atomic. @advanced_1168_h3 Consistency @advanced_1169_p This database is always in a consistent state. Referential integrity rules are always enforced. @advanced_1170_h3 Isolation @advanced_1171_p For H2, as with most other database systems, the default isolation level is 'read committed'. This provides better performance, but also means that transactions are not completely isolated. H2 supports the transaction isolation levels 'serializable', 'read committed', and 'read uncommitted'. @advanced_1172_h3 Durability @advanced_1173_p This database does not guarantee that all committed transactions survive a power failure. Tests show that all databases sometimes lose transactions on power failure (for details, see below). Where losing transactions is not acceptable, a laptop or UPS (uninterruptible power supply) should be used. If durability is required for all possible cases of hardware failure, clustering should be used, such as the H2 clustering mode. @advanced_1174_h2 Durability Problems @advanced_1175_p Complete durability means all committed transaction survive a power failure. Some databases claim they can guarantee durability, but such claims are wrong. A durability test was run against H2, HSQLDB, PostgreSQL, and Derby. All of those databases sometimes lose committed transactions. The test is included in the H2 download, see org.h2.test.poweroff.Test. @advanced_1176_h3 Ways to (Not) Achieve Durability @advanced_1177_p Making sure that committed transaction are not lost is more complicated than it seems first. To guarantee complete durability, a database must ensure that the log record is on the hard drive before the commit call returns. To do that, databases use different methods. One is to use the 'synchronous write' file access mode. In Java, RandomAccessFile supports the modes "rws" and "rwd": @advanced_1178_li rwd: Every update to the file's content is written synchronously to the underlying storage device. @advanced_1179_li rws: In addition to rwd, every update to the metadata is written synchronously. @advanced_1180_p This feature is used by Derby. A test (org.h2.test.poweroff.TestWrite) with one of those modes achieves around 50 thousand write operations per second. Even when the operating system write buffer is disabled, the write rate is around 50 thousand operations per second. This feature does not force changes to disk because it does not flush all buffers. The test updates the same byte in the file again and again. If the hard drive was able to write at this rate, then the disk would need to make at least 50 thousand revolutions per second, or 3 million RPM (revolutions per minute). There are no such hard drives. The hard drive used for the test is about 7200 RPM, or about 120 revolutions per second. There is an overhead, so the maximum write rate must be lower than that. @advanced_1181_p Buffers can be flushed by calling the function fsync. There are two ways to do that in Java: @advanced_1182_li FileDescriptor.sync(). The documentation says that this forces all system buffers to synchronize with the underlying device. Sync is supposed to return after all in-memory modified copies of buffers associated with this FileDescriptor have been written to the physical medium. @advanced_1183_li FileChannel.force() (since JDK 1.4). This method is supposed to force any updates to this channel's file to be written to the storage device that contains it. @advanced_1184_p By default, MySQL calls fsync for each commit. When using one of those methods, only around 60 write operations per second can be achieved, which is consistent with the RPM rate of the hard drive used. Unfortunately, even when calling FileDescriptor.sync() or FileChannel.force(), data is not always persisted to the hard drive, because most hard drives do not obey fsync(): see 'Your Hard Drive Lies to You' at http://hardware.slashdot.org/article.pl?sid=05/05/13/0529252. In Mac OS X fsync does not flush hard drive buffers: http://lists.apple.com/archives/darwin-dev/2005/Feb/msg00072.html. So the situation is confusing, and tests prove there is a problem. @advanced_1185_p Trying to flush hard drive buffers hard, and if you do the performance is very bad. First you need to make sure that the hard drive actually flushes all buffers. Tests show that this can not be done in a reliable way. Then the maximum number of transactions is around 60 per second. Because of those reasons, the default behavior of H2 is to delay writing committed transactions. @advanced_1186_p In H2, after a power failure, a bit more than one second of committed transactions may be lost. To change the behavior, use SET WRITE_DELAY and CHECKPOINT SYNC. Most other databases support commit delay as well. In the performance comparison, commit delay was used for all databases that support it. @advanced_1187_h3 Running the Durability Test @advanced_1188_p To test the durability / non-durability of this and other databases, you can use the test application in the package org.h2.test.poweroff. Two computers with network connection are required to run this test. One computer just listens, while the test application is run (and power is cut) on the other computer. The computer with the listener application opens a TCP/IP port and listens for an incoming connection. The second computer first connects to the listener, and then created the databases and starts inserting records. The connection is set to 'autocommit', which means after each inserted record a commit is performed automatically. Afterwards, the test computer notifies the listener that this record was inserted successfully. The listener computer displays the last inserted record number every 10 seconds. Now, switch off the power manually, then restart the computer, and run the application again. You will find out that in most cases, none of the databases contains all the records that the listener computer knows about. For details, please consult the source code of the listener and test application. @advanced_1189_h2 Using the Recover Tool @advanced_1190_p The recover tool can be used to extract the contents of a data file, even if the database is corrupted. At this time, it does not extract the content of the log file or large objects (CLOB or BLOB). To run the tool, type on the command line: @advanced_1191_p For each database in the current directory, a text file will be created. This file contains raw insert statement (for the data) and data definition (DDL) statement to recreate the schema of the database. This file cannot be executed directly, as the raw insert statements don't have the correct table names, so the file needs to be pre-processed manually before executing. @advanced_1192_h2 File Locking Protocols @advanced_1193_p Whenever a database is opened, a lock file is created to signal other processes that the database is in use. If database is closed, or if the process that opened the database terminates, this lock file is deleted. @advanced_1194_p In special cases (if the process did not terminate normally, for example because there was a blackout), the lock file is not deleted by the process that created it. That means the existence of the lock file is not a safe protocol for file locking. However, this software uses a challenge-response protocol to protect the database files. There are two methods (algorithms) implemented to provide both security (that is, the same database files cannot be opened by two processes at the same time) and simplicity (that is, the lock file does not need to be deleted manually by the user). The two methods are 'file method' and 'socket methods'. @advanced_1195_h3 File Locking Method 'File' @advanced_1196_p The default method for database file locking is the 'File Method'. The algorithm is: @advanced_1197_li When the lock file does not exist, it is created (using the atomic operation File.createNewFile). Then, the process waits a little bit (20ms) and checks the file again. If the file was changed during this time, the operation is aborted. This protects against a race condition when a process deletes the lock file just after one create it, and a third process creates the file again. It does not occur if there are only two writers. @advanced_1198_li If the file can be created, a random number is inserted together with the locking method ('file'). Afterwards, a watchdog thread is started that checks regularly (every second once by default) if the file was deleted or modified by another (challenger) thread / process. Whenever that occurs, the file is overwritten with the old data. The watchdog thread runs with high priority so that a change to the lock file does not get through undetected even if the system is very busy. However, the watchdog thread does use very little resources (CPU time), because it waits most of the time. Also, the watchdog only reads from the hard disk and does not write to it. @advanced_1199_li If the lock file exists, and it was modified in the 20 ms, the process waits for some time (up to 10 times). If it was still changed, an exception is thrown (database is locked). This is done to eliminate race conditions with many concurrent writers. Afterwards, the file is overwritten with a new version (challenge). After that, the thread waits for 2 seconds. If there is a watchdog thread protecting the file, he will overwrite the change and this process will fail to lock the database. However, if there is no watchdog thread, the lock file will still be as written by this thread. In this case, the file is deleted and atomically created again. The watchdog thread is started in this case and the file is locked. @advanced_1200_p This algorithm is tested with over 100 concurrent threads. In some cases, when there are many concurrent threads trying to lock the database, they block each other (meaning the file cannot be locked by any of them) for some time. However, the file never gets locked by two threads at the same time. However using that many concurrent threads / processes is not the common use case. Generally, an application should throw an error to the user if it cannot open a database, and not try again in a (fast) loop. @advanced_1201_h3 File Locking Method 'Socket' @advanced_1202_p There is a second locking mechanism implemented, but disabled by default. The algorithm is: @advanced_1203_li If the lock file does not exist, it is created. Then a server socket is opened on a defined port, and kept open. The port and IP address of the process that opened the database is written into the lock file. @advanced_1204_li If the lock file exists, and the lock method is 'file', then the software switches to the 'file' method. @advanced_1205_li If the lock file exists, and the lock method is 'socket', then the process checks if the port is in use. If the original process is still running, the port is in use and this process throws an exception (database is in use). If the original process died (for example due to a blackout, or abnormal termination of the virtual machine), then the port was released. The new process deletes the lock file and starts again. @advanced_1206_p This method does not require a watchdog thread actively polling (reading) the same file every second. The problem with this method is, if the file is stored on a network share, two processes (running on different computers) could still open the same database files, if they do not have a direct TCP/IP connection. @advanced_1207_h2 Protection against SQL Injection @advanced_1208_h3 What is SQL Injection @advanced_1209_p This database engine provides a solution for the security vulnerability known as 'SQL Injection'. Here is a short description of what SQL injection means. Some applications build SQL statements with embedded user input such as: @advanced_1210_p If this mechanism is used anywhere in the application, and user input is not correctly filtered or encoded, it is possible for a user to inject SQL functionality or statements by using specially built input such as (in this example) this password: ' OR ''='. In this case the statement becomes: @advanced_1211_p Which is always true no matter what the password stored in the database is. For more information about SQL Injection, see Glossary and Links. @advanced_1212_h3 Disabling Literals @advanced_1213_p SQL Injection is not possible if user input is not directly embedded in SQL statements. A simple solution for the problem above is to use a PreparedStatement: @advanced_1214_p This database provides a way to enforce usage of parameters when passing user input to the database. This is done by disabling embedded literals in SQL statements. To do this, execute the statement: @advanced_1215_p Afterwards, SQL statements with text and number literals are not allowed any more. That means, SQL statement of the form WHERE NAME='abc' or WHERE CustomerId=10 will fail. It is still possible to use PreparedStatements and parameters as described above. Also, it is still possible to generate SQL statements dynamically, and use the Statement API, as long as the SQL statements do not include literals. There is also a second mode where number literals are allowed: SET ALLOW_LITERALS NUMBERS. To allow all literals, execute SET ALLOW_LITERALS ALL (this is the default setting). Literals can only be enabled or disabled by an administrator. @advanced_1216_h3 Using Constants @advanced_1217_p Disabling literals also means disabling hard-coded 'constant' literals. This database supports defining constants using the CREATE CONSTANT command. Constants can be defined only when literals are enabled, but used even when literals are disabled. To avoid name clashes with column names, constants can be defined in other schemas: @advanced_1218_p Even when literals are enabled, it is better to use constants instead of hard-coded number or text literals in queries or views. With constants, typos are found at compile time, the source code is easier to understand and change. @advanced_1219_h3 Using the ZERO() Function @advanced_1220_p It is not required to create a constant for the number 0 as there is already a built-in function ZERO(): @advanced_1221_h2 Restricting Class Loading and Usage @advanced_1222_p By default there is no restriction on loading classes and executing Java code for admins. That means an admin may call system functions such as System.setProperty by executing: @advanced_1223_p To restrict users (including admins) from loading classes and executing code, the list of allowed classes can be set in the system property h2.allowedClasses in the form of a comma separated list of classes or patterns (items ending with '*'). By default all classes are allowed. Example: @advanced_1224_p This mechanism is used for all user classes, including database event listeners, trigger classes, user defined functions, user defined aggregate functions, and JDBC driver classes (with the exception of the H2 driver) when using the H2 Console. @advanced_1225_h2 Security Protocols @advanced_1226_p The following paragraphs document the security protocols used in this database. These descriptions are very technical and only intended for security experts that already know the underlying security primitives. @advanced_1227_h3 User Password Encryption @advanced_1228_p When a user tries to connect to a database, the combination of user name, @, and password hashed using SHA-256, and this hash value is transmitted to the database. This step does not try to an attacker from re-using the value if he is able to listen to the (unencrypted) transmission between the client and the server. But, the passwords are never transmitted as plain text, even when using an unencrypted connection between client and server. That means if a user reuses the same password for different things, this password is still protected up to some point. See also 'RFC 2617 - HTTP Authentication: Basic and Digest Access Authentication' for more information. @advanced_1229_p When a new database or user is created, a new cryptographically secure random salt value is generated. The size of the salt is 64 bit. Using the random salt reduces the risk of an attacker pre-calculating hash values for many different (commonly used) passwords. @advanced_1230_p The combination of user-password hash value (see above) and salt is hashed using SHA-256. The resulting value is stored in the database. When a user tries to connect to the database, the database combines user-password hash value with the stored salt value and calculated the hash value. Other products use multiple iterations (hash the hash value again and again), but this is not done in this product to reduce the risk of denial of service attacks (where the attacker tries to connect with bogus passwords, and the server spends a lot of time calculating the hash value for each password). The reasoning is: if the attacker has access to the hashed passwords, he also has access to the data in plain text, and therefore does not need the password any more. If the data is protected by storing it on another computer and only remotely, then the iteration count is not required at all. @advanced_1231_h3 File Encryption @advanced_1232_p The database files can be encrypted using two different algorithms: AES-128 and XTEA (using 32 rounds). The reasons for supporting XTEA is performance (XTEA is about twice as fast as AES) and to have an alternative algorithm if AES is suddenly broken. @advanced_1233_p When a user tries to connect to an encrypted database, the combination of the word 'file', @, and the file password is hashed using SHA-256. This hash value is transmitted to the server. @advanced_1234_p When a new database file is created, a new cryptographically secure random salt value is generated. The size of the salt is 64 bit. The combination of the file password hash and the salt value is hashed 1024 times using SHA-256. The reason for the iteration is to make it harder for an attacker to calculate hash values for common passwords. @advanced_1235_p The resulting hash value is used as the key for the block cipher algorithm (AES-128 or XTEA with 32 rounds). Then, an initialization vector (IV) key is calculated by hashing the key again using SHA-256. This is to make sure the IV is unknown to the attacker. The reason for using a secret IV is to protect against watermark attacks. @advanced_1236_p Before saving a block of data (each block is 8 bytes long), the following operations are executed: First, the IV is calculated by encrypting the block number with the IV key (using the same block cipher algorithm). This IV is combined with the plain text using XOR. The resulting data is encrypted using the AES-128 or XTEA algorithm. @advanced_1237_p When decrypting, the operation is done in reverse. First, the block is decrypted using the key, and then the IV is calculated combined with the decrypted text using XOR. @advanced_1238_p Therefore, the block cipher modes of operation is CBC (Cipher-block chaining), but each chain is only one block long. The advantage over the ECB (Electronic codebook) mode is that patterns in the data are not revealed, and the advantage over multi block CBC is that flipped cipher text bits are not propagated to flipped plaintext bits in the next block. @advanced_1239_p Database encryption is meant for securing the database while it is not in use (stolen laptop and so on). It is not meant for cases where the attacker has access to files while the database is in use. When he has write access, he can for example replace pieces of files with pieces of older versions and manipulate data like this. @advanced_1240_p File encryption slows down the performance of the database engine. Compared to unencrypted mode, database operations take about 2.2 times longer when using XTEA, and 2.5 times longer using AES (embedded mode). @advanced_1241_h3 SSL/TLS Connections @advanced_1242_p Remote SSL/TLS connections are supported using the Java Secure Socket Extension (SSLServerSocket / SSLSocket). By default, anonymous SSL is enabled. The default cipher suite is <code>SSL_DH_anon_WITH_RC4_128_MD5</code> . @advanced_1243_h3 HTTPS Connections @advanced_1244_p The web server supports HTTP and HTTPS connections using SSLServerSocket. There is a default self-certified certificate to support an easy starting point, but custom certificates are supported as well. @advanced_1245_h2 Universally Unique Identifiers (UUID) @advanced_1246_p This database supports the UUIDs. Also supported is a function to create new UUIDs using a cryptographically strong pseudo random number generator. With random UUIDs, the chance of two having the same value can be calculated using the probability theory. See also 'Birthday Paradox'. Standardized randomly generated UUIDs have 122 random bits. 4 bits are used for the version (Randomly generated UUID), and 2 bits for the variant (Leach-Salz). This database supports generating such UUIDs using the built-in function RANDOM_UUID(). Here is a small program to estimate the probability of having two identical UUIDs after generating a number of values: @advanced_1247_p Some values are: @advanced_1248_p To help non-mathematicians understand what those numbers mean, here a comparison: One's annual risk of being hit by a meteorite is estimated to be one chance in 17 billion, that means the probability is about 0.000'000'000'06. @advanced_1249_h2 Settings Read from System Properties @advanced_1250_p Some settings of the database can be set on the command line using -DpropertyName=value. It is usually not required to change those settings manually. The settings are case sensitive. Example: @advanced_1251_p The current value of the settings can be read in the table INFORMATION_SCHEMA.SETTINGS. @advanced_1252_p For a complete list of settings, see <a href="../javadoc/org/h2/constant/SysProperties.html">SysProperties</a> . @advanced_1253_h2 Setting the Server Bind Address @advanced_1254_p Usually server sockets accept connections on any/all local addresses. This may be a problem on multi-homed hosts. To bind only to one address, use the system property h2.bindAddress. This setting is used for both regular server sockets and for SSL server sockets. IPv4 and IPv6 address formats are supported. @advanced_1255_h2 Glossary and Links @advanced_1256_th Term @advanced_1257_th Description @advanced_1258_td AES-128 @advanced_1259_td A block encryption algorithm. See also: <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">Wikipedia: AES</a> @advanced_1260_td Birthday Paradox @advanced_1261_td Describes the higher than expected probability that two persons in a room have the same birthday. Also valid for randomly generated UUIDs. See also: <a href="http://en.wikipedia.org/wiki/Birthday_paradox">Wikipedia: Birthday Paradox</a> @advanced_1262_td Digest @advanced_1263_td Protocol to protect a password (but not to protect data). See also: <a href="http://www.faqs.org/rfcs/rfc2617.html">RFC 2617: HTTP Digest Access Authentication</a> @advanced_1264_td GCJ @advanced_1265_td GNU Compiler for Java. <a href="http://gcc.gnu.org/java/">http://gcc.gnu.org/java/</a> and <a href="http://nativej.mtsystems.ch">http://nativej.mtsystems.ch/ (not free any more)</a> @advanced_1266_td HTTPS @advanced_1267_td A protocol to provide security to HTTP connections. See also: <a href="http://www.ietf.org/rfc/rfc2818.txt">RFC 2818: HTTP Over TLS</a> @advanced_1268_td Modes of Operation @advanced_1269_a Wikipedia: Block cipher modes of operation @advanced_1270_td Salt @advanced_1271_td Random number to increase the security of passwords. See also: <a href="http://en.wikipedia.org/wiki/Key_derivation_function">Wikipedia: Key derivation function</a> @advanced_1272_td SHA-256 @advanced_1273_td A cryptographic one-way hash function. See also: <a href="http://en.wikipedia.org/wiki/SHA_family">Wikipedia: SHA hash functions</a> @advanced_1274_td SQL Injection @advanced_1275_td A security vulnerability where an application generates SQL statements with embedded user input. See also: <a href="http://en.wikipedia.org/wiki/SQL_injection">Wikipedia: SQL Injection</a> @advanced_1276_td Watermark Attack @advanced_1277_td Security problem of certain encryption programs where the existence of certain data can be proven without decrypting. For more information, search in the internet for 'watermark attack cryptoloop' @advanced_1278_td SSL/TLS @advanced_1279_td Secure Sockets Layer / Transport Layer Security. See also: <a href="http://java.sun.com/products/jsse/">Java Secure Socket Extension (JSSE)</a> @advanced_1280_td XTEA @advanced_1281_td A block encryption algorithm. See also: <a href="http://en.wikipedia.org/wiki/XTEA">Wikipedia: XTEA</a> @build_1000_h1 Build @build_1001_a Portability @build_1002_a Environment @build_1003_a Building the Software @build_1004_a Using Maven 2 @build_1005_a Translating @build_1006_h2 Portability @build_1007_p This database is written in Java and therefore works on many platforms. It can also be compiled to a native executable using GCJ. @build_1008_h2 Environment @build_1009_p A Java Runtime Environment (JRE) version 1.4 or higher is required to run this database. @build_1010_p To build the database executables, the following software stack was used. Newer version or compatible software works too. @build_1011_li Windows XP @build_1012_li Sun JDK Version 1.4 @build_1013_li Apache Ant Version 1.6.5 @build_1014_li Mozilla Firefox 1.5 @build_1015_li Eclipse Version 3.2.2 @build_1016_li YourKit Java Profiler @build_1017_h2 Building the Software @build_1018_p On the command line, go to the directory src and execute the following command: @build_1019_p You will get a list of targets. If you want to build the jar files, execute: @build_1020_p To create a jar file with the JDBC API and the classes required to connect to a server only, use the target jarClient: @build_1021_p The other targets may be used as well. @build_1022_h2 Using Maven 2 @build_1023_h3 Using a Central Repository @build_1024_p You can include the database in your Maven 2 project as a dependency. Example: @build_1025_p New versions of this database are first uploaded to http://hsql.sourceforge.net/m2-repo/ and then automatically synchronized with the main maven repository; however after a new release it may take a few hours before they are available there. @build_1026_h3 Using Snapshot Version @build_1027_p To build a 'snapshot' H2 .jar file and upload it the to the local Maven 2 repository, execute the following command: @build_1028_p Afterwards, you can include the database in your Maven 2 project as a dependency: @build_1029_h2 Translating @build_1030_p The translation of this software is split into the following parts: @build_1031_li H2 Console: src/main/org/h2/server/web/res/_text_*.properties @build_1032_li Error messages: src/main/org/h2/res/_messages_*.properties @build_1033_li Web site: src/docsrc/text/_docs_*.utf8.txt @build_1034_p The conversion between UTF-8 and Java encoding (using the \u syntax), as well as the HTML entities (&#..;) is automated by running the tool PropertiesToUTF8. The web site translation is automated as well, using <code>ant docs</code> . @changelog_1000_h1 Change Log @changelog_1001_h2 Next Version (unreleased) @changelog_1002_li - @changelog_1003_h2 Version 1.0.67 (2008-02-22) @changelog_1004_li New function FILE_READ to read a file or from an URL. Both binary and text data is supported. @changelog_1005_li CREATE TABLE AS SELECT now supports specifying the column list and data types. @changelog_1006_li Connecting to a TCP server and at shutting it down at the same time could cause a Java level deadlock. @changelog_1007_li A user now has all rights on his own local temporary tables. @changelog_1008_li The CSV tool now supports a custom lineSeparator. @changelog_1009_li When using multiple connections, empty space was reused too early sometimes. This was sometimes causing database corruption. @changelog_1010_li The H2 Console has been translated to Dutch. Thanks a lot to Remco Schoen! @changelog_1011_li Databases can now be opened even if trigger classes are not in the classpath. The exception is thrown when trying to fire the trigger. @changelog_1012_li Opening databases with ACCESS_MODE_DATA=r is now supported. In this case the database is read-only, but the files don't not need to be read-only. @changelog_1013_li Security: The database now waits 200 ms before throwing an exception if the user name or password don't match, to slow down dictionary attacks. @changelog_1014_li The value cache is now a soft reference cache. This should help save memory. @changelog_1015_li CREATE INDEX on a table with many rows could run out of memory. Fixed. @changelog_1016_li Large result sets are now a bit faster. @changelog_1017_li ALTER TABLE ALTER COLUMN RESTART and ALTER SEQUENCE now support parameters (any expressions). @changelog_1018_li When setting the base directory on the command line, the user directory prefix ('~') was ignored. @changelog_1019_li The DbStarter servlet didn't start the TCP listener even if configured. @changelog_1020_li Statement.setQueryTimeout() is now supported. @changelog_1021_li New session setting QUERY_TIMEOUT, and new system property h2.maxQueryTimeout. @changelog_1022_li Changing the transaction log level (SET LOG) is now written to the trace file by default. @changelog_1023_li In a SQL script, primary key constraints are now ordered before foreign key constraints. @changelog_1024_li It was not possible to create a referential constraint to a table in a different schema in some situations. @changelog_1025_li The H2 Console was slow when the database contains many tables. Now the column names are not shown in this case. @changelog_1026_h2 Version 1.0.66 (2008-02-02) @changelog_1027_li There is a new online error analyzer tool. @changelog_1028_li H2 Console: stack traces are now links to the source code in the source repository (H2 database only). @changelog_1029_li CHAR data type equals comparison was case insensitive instead of case sensitive. @changelog_1030_li The exception 'Value too long for column' now includes the data. @changelog_1031_li The table name was missing in the documentation of CREATE INDEX. @changelog_1032_li Better support for IKVM (www.ikvm.net): the H2 Console now opens a browser window. @changelog_1033_li The cache size was not correctly calculated for tables with large objects (specially if compression is used). This could lead to out-of-memory exceptions. @changelog_1034_li The exception "Hexadecimal string contains non-hex character" was not always thrown when it should have been. Fixed. @changelog_1035_li The H2 Console now provides a link to the documentation when an error occurs (H2 databases only so far). @changelog_1036_li The acting as PostgreSQL server, when a base directory was set, and the H2 Console was started as well, the base directory was applied twice. @changelog_1037_li Calling EXTRACT(HOUR FROM ...) or EXTRACT(HH FROM ...) returned the wrong values (0 to 11 instead of 0 to 23). All other tested databases return values from 0 to 23. Please check if your application relies on the old behavior before upgrading. @changelog_1038_li For compatibility with other databases the column default (COLUMN_DEF) for columns without default is now null (it was an empty string). @changelog_1039_li Statements that contain very large subqueries (where the subquery result does not fit in memory) are now faster. @changelog_1040_li Variables: large objects (CLOB and BLOB) that don't fit in memory did not work correctly when used as variables. @changelog_1041_li Fulltext search is now supported in named in-memory databases. @changelog_1042_li H2 Console: multiple consecutive spaces in the setting name did not work. Fixed. @changelog_1043_h2 Version 1.0.65 (2008-01-18) @changelog_1044_li The build (ant) now automatically switches the source code to the correct version (JDK 1.4/1.5 or 1.6). @changelog_1045_li A recovery bug has been fixed. With older versions, it was necessary to add ;RECOVER=1 to the database URL in cases where it should not have been required. @changelog_1046_li The performance for DROP and DROP ALL OBJECTS has been improved. @changelog_1047_li The ChangePassword API has been improved. @changelog_1048_li User defined variables are now supported. Examples: SET @VAR=10;CALL @VAR. This can be used for running totals as in: select x, set(@t, ifnull(@t, 0) + x) from system_range(1, 10) @changelog_1049_li The Ukrainian translation has been improved. @changelog_1050_li CALL statements can now be used in batch updates and called using Statement.executeUpdate. @changelog_1051_li New read-only setting CREATE_BUILD (the build number of the database engine that created the database). @changelog_1052_li The optimizer did not use multi column indexes for range queries in some cases. Fixed. @changelog_1053_li The H2 Console now calls DataSource.getConnection() instead of DataSource.getConnection(user, password) when user name and password are not specified. @changelog_1054_li The bind IP address can now be set when using multi-homed host (if multiple network adapters are available) using the system property h2.bindAddress. @changelog_1055_li Batch update: Calling BatchUpdateException.printStackTrace() could result in out of memory. Fixed. @changelog_1056_li Indexes of unique or foreign constraints where not dropped when the constraint was dropped after altering the table (for example dropping a column). Fixed. @changelog_1057_li The performance for large result sets in the server mode has been improved. @changelog_1058_li The setting h2.serverSmallResultSetSize has been renamed to h2.serverResultSetFetchSize. @changelog_1059_li The SCRIPT command now uses multi-row insert statements to save space except if the option SIMPLE is used. @changelog_1060_li The SCRIPT command did not split up CLOB data correctly. Fixed. @changelog_1061_li Optimization for single column distinct queries with an index: select distinct name from test. Can be disabled by setting the system property h2.optimizeDistinct to false. @changelog_1062_li DROP ALL OBJECTS did not drop user defined aggregate functions and domains. @changelog_1063_li PostgreSQL compatibility: COUNT(T.*) is now supported. @changelog_1064_li LIKE comparisons are now faster. @changelog_1065_li Encrypted databases are now faster. @changelog_1066_h2 Version 1.0.64 (2007-12-27) @changelog_1067_li 3-way union queries with prepared statement or views could return the wrong results. Fixed. @changelog_1068_li The PostgreSQL ODBC driver did not work in the last release due to a parser regression. Fixed. @changelog_1069_li CSV tool: some escape/separator character combinations did not work. Fixed. @changelog_1070_li CSV tool: the character # could not be used as a separator when reading. @changelog_1071_li Recovery: when the index file is corrupt, now the database deletes it and re-creates it automatically. @changelog_1072_li The MVCC mode did not work well with in-memory databases. Fixed. @changelog_1073_li The FTP server now supports a event listener. Thanks Fulvio Biondi for the help! @changelog_1074_li New system function CANCEL_SESSION to cancel the currently executing statement of another session. @changelog_1075_li The database now supports an exclusive mode. In exclusive mode, new connections are rejected. @changelog_1076_li H2 Console: when editing result sets, columns can now be set to null. The text 'null' must be escaped using '=null'. @changelog_1077_li New built-in functions RPAD and LPAD. @changelog_1078_li New meta data table INFORMATION_SCHEMA.SESSIONS and LOCKS to get information about active connections and locks. Admins will see all connections, non-admins only their own session. @changelog_1079_li The Ukrainian translation was not working in the last release. Fixed. @changelog_1080_li Creating many tables (many hundreds) was slow. Fixed. @changelog_1081_li Opening a database with many indexes (thousands) was slow. Fixed. @changelog_1082_li H2 Console / autocomplete: Ctrl+Space now shows the list in all modes. @changelog_1083_li The method Trigger.init has been changed: the parameters 'before' and 'type', have been added to the init method. @changelog_1084_li The performance has been improved for ResultSet methods with column name. @changelog_1085_li A stack trace was thrown if the system did not provide a quick secure random source and if there is no network or the network settings are not configured. Fixed. @changelog_1086_li The H2 Console has been translated to Turkish. Thanks a lot to Ridvan Agar! @changelog_1087_li Improved debugging support: toString methods of most object now return a meaningful text. @changelog_1088_li The classes DbStarter and WebServlet have been moved to src/main. @changelog_1089_li The column INFORMATION_SCHEMA.TRIGGERS.SQL now contains the CREATE TRIGGER statement. @changelog_1090_li Loading classes and calling methods can be restricted using the new system property h2.allowedClasses. @changelog_1091_li The database could not be used in Java applets due to security exceptions. Fixed. @changelog_1092_h2 Version 1.0.63 (2007-12-02) @changelog_1093_li The SecurePassword example has been improved. @changelog_1094_li In timezones where the summer time saving limit is at midnight, some dates do not work in some virtual machines, for example 2007-10-14 in Chile, using the Sun JVM 1.6.0_03-b05. Fixed. @changelog_1095_li The native fulltext search was not working properly after re-connecting. @changelog_1096_li Improved FTP server: now the PORT command is supported. @changelog_1097_li Temporary views (FROM(...)) with UNION didn't work if nested. Fixed. @changelog_1098_li Performance optimization for IN(...) and IN(SELECT...), currently disabled by default. To enable, use java -Dh2.optimizeInJoin=true @changelog_1099_li The H2 Console has been translated to Ukrainian by Igor Dobrovolskyi. Thanks a lot! @changelog_1100_li New function TABLE_DISTINCT. @changelog_1101_li Using LIMIT with values close to Integer.MAX_VALUE didn't work correctly. @changelog_1102_li Certain setting in the Server didn't work (http://code.google.com/p/h2database/issues/detail?id=7). @changelog_1103_h2 Version 1.0.62 (2007-11-25) @changelog_1104_li Large updates and deletes are now supported by buffering data to disk if required. The threshold is currently set to 100'000 bytes and can be changed using SET MAX_OPERATION_MEMORY or using by appending ;MAX_OPERATION_MEMORY=.. to the database URL. See also the docs. @changelog_1105_li MVCC: now an exception is thrown when an application tries to change the MVCC setting while the database is already open. @changelog_1106_li Referential integrity checks didn't lock the referenced table, and thus could read uncommitted rows of other connections. In that way the referential constraints could get violated (except when using MVCC). @changelog_1107_li Renaming or dropping a user with a schema, or removing the admin property of that user made the schema inaccessible after re-opening the database. Fixed. @changelog_1108_li The H2 Console now also support the command line option -ifExists when started from the Server tool, but only when connecting to H2 databases. @changelog_1109_li Duplicate column names were not detected when renaming columns. Fixed. @changelog_1110_li The console did not display multiple embedded spaces in text correctly. Fixed. @changelog_1111_li Google Android support: use 'ant codeswitchAndroid' to switch the source code to Android. @changelog_1112_li Values of type ARRAY are now sorted as in PostgreSQL. @changelog_1113_li In the cluster mode, could not connect if only one server was running (last release only). Fixed. @changelog_1114_li The performance of large CSV operations has been improved. @changelog_1115_li Now using custom toString() for most JDBC objects and commands. @changelog_1116_li Nested temporary views (SELECT * FROM (SELECT ...)) with parameters didn't work in some cases. Fixed. @changelog_1117_li CSV: Using an empty field delimiter didn't work (a workaround was using char(0)). Fixed. @changelog_1118_li A patch for Apache DDL Utils is available at https://issues.apache.org/jira/browse/DDLUTILS-185 @changelog_1119_li The default value for h2.emergencySpaceInitial is now 256 KB (to speed up creating encrypted databases) @changelog_1120_li Eduardo Velasques has translated the H2 Console and the error messages to Brazilian Portuguese. Thanks a lot! @changelog_1121_li Creating a table from GROUP_CONCAT didn't work if the data was longer than 255 characters @changelog_1122_h2 Version 1.0.61 (2007-11-10) @changelog_1123_li The Lucene Fulltext implementation is now compiled and included in the h2.jar. Requires Lucene 2.2. @changelog_1124_li Added more tests. The code coverage is now at 83%. @changelog_1125_li ResultSetMetaData.getColumnDisplaySize was calculated as the longest display size for the given result set, but should be the maximum size that fits in the column. Fixed. @changelog_1126_li The MODE used to be a global setting, now it is a database level setting. @changelog_1127_li The database does now always round to the nearest number when converting a floating point to a integer: CAST(1.5 AS INT) will now result in 2, like in PostgreSQL and MySQL. @changelog_1128_li Math operations using unknown data types (for example -? and ?+?) are now interpreted as decimal. @changelog_1129_li INSTR, LOCATE: backward searching is not supported by using a negative start position. @changelog_1130_li Can now open a database stored in a jar or zip file (for example, jdbc:h2:zip:c:/temp/h2.zip!/test). @changelog_1131_li Files access now uses an API (FileSystem, FileObject), this will simplify adding other file systems and features (for example replication). @changelog_1132_li Vlad Alexahin has translated H2 Console to Russian. Thanks a lot! @changelog_1133_li Descending indexes are now supported. This is useful when sorting columns descending, for example by creation date. @changelog_1134_li Solved a Java level deadlock in the DatabaseCloser. @changelog_1135_li CREATE SEQUENCE: New option CACHE (number of pre-allocated numbers). New column CACHE in the sequence meta data table. The default cache size is still 32. @changelog_1136_li MVCC: The system property h2.mvcc has been removed. A few bugs have been fixed, and new tests have been added. @changelog_1137_h2 Version 1.0.60 (2007-10-20) @changelog_1138_li JdbcXAConnection: starting a transaction before getting the connection didn't switch off autocommit. @changelog_1139_li User defined aggregate functions are not supported. @changelog_1140_li Server.shutdownTcpServer was blocked when first called with force=false and then force=true. Now documentation is improved, and it is no longer blocked. @changelog_1141_li Stack traces did not include the SQL statement in all cases where they could have. Also, stack traces with SQL statement are now shorter. @changelog_1142_li Linked tables: now tables in non-default schemas are supported as well @changelog_1143_li New Italian translation from PierPaolo Ucchino. Thanks a lot! @changelog_1144_li CSV: New methods to set the escape character and field delimiter in the Csv tool and the CSVWRITE and CSVREAD methods. @changelog_1145_li Prepared statements could not be used after data definition statements (creating tables and so on). Fixed. @changelog_1146_li PreparedStatement.setMaxRows could not be changed to a higher value after the statement was executed. @changelog_1147_li The H2 Console could not connect twice to the same H2 embedded database at the same time. Fixed. @changelog_1148_li CSVREAD, RUNSCRIPT and so on now support URLs as well, using URL.openStream(). Example: select * from csvread('jar:file:///c:/temp/test.jar!/test.csv'); @changelog_1149_h2 Version 1.0.59 (2007-10-03) @changelog_1150_li When the data type was unknown in a subquery, sometimes the wrong exception (ArrayIndexOutOfBounds) was thrown. Fixed. @changelog_1151_li If the process was killed while the database was running, sometimes the database could not be opened ('double allocation') except when the system property h2.check was set to false. Fixed. @changelog_1152_li Multi-threaded kernel (MULTI_THREADED=1): A synchronization problem has been fixed. @changelog_1153_li A PreparedStatement that was cancelled could not be reused. Fixed. @changelog_1154_li H2 Console: Progress information when logging into a H2 embedded database (useful when opening a database is slow). @changelog_1155_li When the database was closed while logging was disabled (LOG 0), re-opening the database was slow. Fixed. @changelog_1156_li Fulltext search is now documented (in the Tutorial). @changelog_1157_li The Console did not refresh the table list if the CREATE TABLE statement started with a comment. Fixed. @changelog_1158_li When creating a table using CREATE TABLE .. AS SELECT, the precision for some data types (for example VARCHAR) was set to the default precision. Fixed. @changelog_1159_li When using the (undocumented) in-memory file system (jdbc:h2:memFS:x or jdbc:h2:memLZF:x), and using multiple connections, a ConcurrentModificationException could occur. Fixed. @changelog_1160_li REGEXP compatibility: So far String.matches was used, but for compatibility with MySQL, now Matcher.find is used. @changelog_1161_li SCRIPT: the SQL statements in the result set now include the terminating semicolon as well. Simplifies copy and paste. @changelog_1162_li When using a subquery with group by as a table, some columns could not be used in the where condition in the outer query. Example: SELECT * FROM (SELECT ID, COUNT(*) C FROM TEST) WHERE C > 100. Fixed. @changelog_1163_li Views with subqueries as tables and queries with nested subqueries as tables did not always work. Fixed. @changelog_1164_li Compatibility: comparing columns with constants that are out of range does not throw an exception. @changelog_1165_h2 Version 1.0.58 (2007-09-15) @changelog_1166_li System.exit is no longer called by the WebServer, the Console and the Server tool (except to set the exit code if required). This is important when using OSGi. @changelog_1167_li Optimization for independent subqueries. For example, this query can now an index: SELECT * FROM TEST WHERE ID = (SELECT MAX(ID) FROM TEST) This can be disabled by setting the system property h2.optimizeSubqueryCache to false. @changelog_1168_li The explain plan now says: /* direct lookup query */ if the query can be processed directly without reading rows, for example when using MIN(indexed column), MAX(indexed column), or COUNT(*). @changelog_1169_li When using IFNULL, NULLIF, COALESCE, LEAST, or GREATEST, and the first parameter was ?, an exception was thrown. Now the highest data type of all parameters is used. @changelog_1170_li When comparing TINYINT or SMALLINT columns against constants, the index was not used. Fixed. @changelog_1171_li Maven 2: new version are now automatically synced with the central repositories. @changelog_1172_li The default value for MAX_MEMORY_UNDO is now 100000. @changelog_1173_li The documentation indexer does no longer index Japanese pages. If somebody knows how to split Japanese into words please post it. @changelog_1174_li Oracle compatibility: SYSDATE now returns a timestamp. CHR(..) is now an alias for CHAR(..). @changelog_1175_li After deleting data, empty space in the database files was not efficiently reused (but it was reused when opening the database). This has been fixed. @changelog_1176_li About 230 bytes per database was leaked. This is a problem for applications opening and closing many thousand databases. The main problem: a shutdown hook was added but never removed. Fixed. In JDK 1.4, there is an additionally problem, see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4197876. A workaround has been implemented. @changelog_1177_li Optimization for COLUMN IN(.., NULL) if the column does not allow NULL values. @changelog_1178_li Using spaces in column and table aliases was not supported when used inside a view or temporary view. @changelog_1179_li The version (build) number is now included in the manifest file. @changelog_1180_li In some systems, SecureRandom.generateSeed is very slow (taking one minute or more). For those cases, an alternative method is used that takes less than one second. @changelog_1181_li The database file sizes are now increased at most 32 MB at any time. @changelog_1182_li New method DatabaseEventListener.opened that is called just after opening a database. @changelog_1183_li When using the Console with Internet Explorer 6.0 or 7.0, a Javascript error was thrown after clearing the query. @changelog_1184_li A database can now be opened even if class of a user defined function is not in the classpath. Trying to call the function will throws an exception. @changelog_1185_li User defined functions and constants may not overload built-in functions and constants. This didn't work before, but now trying to create such an object will fail. @changelog_1186_li Improved MultiDimension tool (for spatial queries): in the last few releases the tool was actually slower than using a regular query (because index lookup got faster, and because the tool didn't support prepared statements) Now the tool generates prepared statements, and the performance is better again (about 5 times faster for a reasonable amount of data). @changelog_1187_li Adding a foreign key or when re-enabling referential integrity for a table failed when checking was enabled and the reference contained NULL. @changelog_1188_li For PgServer, character encoding other than UTF-8 did not work correctly. Fixed. @changelog_1189_li Using a function in a GROUP BY expression that is used in a view as a condition did not always work. @changelog_1190_h2 Version 1.0.57 (2007-08-25) @changelog_1191_li New experimental feature MVCC (multi version concurrency control). Can be set as a option when opening the database (jdbc:h2:test;MVCC=TRUE) or as a system property (-Dh2.mvcc=true). This is work-in-progress, use it at your own risk. Feedback is welcome. @changelog_1192_li The version number is now major.minor.micro where micro is the build number. Not all version are public, so there may be gaps in the micro. The minor changes when there is a file format change. @changelog_1193_li The backup tool (org.h2.tools.Backup) did not work. The restore tool did not work when the -db parameter was used. Fixed. The documentation of the backup tool has been changed: only one database may be backed up at any time. @changelog_1194_li Opening large read-only databases was very slow. Fixed. @changelog_1195_li New Japanese translation of the error messages thanks to Ikemoto Masahiro. Thanks a lot! @changelog_1196_li Disabling / enabling referential integrity for a table can now be used inside a transaction. @changelog_1197_li Rights checking for dynamic tables (SELECT * FROM (SELECT ...)) did not work. Fixed. @changelog_1198_li Creating more than 10 views that depend on each other was very slow. Reconnecting was slow as well. Fixed. @changelog_1199_li When used as as Servlet, the H2 Console did not work with SSL (using Tomcat). Fixed. @changelog_1200_li When altering a table with foreign key constraint, if there was no manual index created for the referenced columns, the automatically created index was dropped while still being used. Fixed. @changelog_1201_li Check and foreign key constraints now checks if the existing data is consistent (this can be disabled by appending NOCHECK). It is also possible to check existing data when re-enabling referential integrity for a table. @changelog_1202_li Some unit tests failed on Linux because the file system works differently. The unit tests are fixed and should work now. @changelog_1203_li Can now incrementally translate the documentation. See also FAQ. @changelog_1204_li Improved error messages: some tools can't show the root cause of an exception. Adding the message of the root cause to the message of the thrown exception now where it makes sense. @changelog_1205_li The H2 Console can now connect to databases using JNDI. The driver class name must be a javax.naming.Context, (for example javax.naming.InitialContext), and the URL the resource name (for example java:comp/env/jdbc/Test). This should also work for linked tables. @changelog_1206_li Google translate did not work for the H2 homepage. It should be fixed now. @changelog_1207_li The CONVERT function did not work with views when using UNION. @changelog_1208_li The build now issues a warning if the source code is switched to the wrong version. @changelog_1209_li The default lock mode is now read committed instead of serialized. @changelog_1210_li PG server: data was truncated when reading large VARCHAR columns and decimal columns. @changelog_1211_li PG server: when the same database was accessed multiple times using the PostgreSQL ODBC driver, the pg_catalog schema update failed, and connecting to the database was not possible. Fixed. @changelog_1212_li Some file operations didn't work for files in the root directory. Fixed. @changelog_1213_li In the Restore tool, the parameter -file did not work. Fixed. @changelog_1214_li Two-phase commit: commit with transaction name was only supported in the recovery scan. Now it is always supported. @changelog_1215_li The column name C_CURRENT_TIMESTAMP did not work in the last release. @changelog_1216_li OpenOffice compatibility: support database name in column names. @changelog_1217_h2 Version 1.0.56 (2007-08-02) @changelog_1218_li A new tool to help translation has been implemented: src/tools/org/h2/tools/i18n/PrepareTranslation. This tool can detect delta changes in the original (English) and prepends '#' in translation if the original text was changed. It can also extract text from the user documentation (however, it is incomplete). @changelog_1219_li The error messages (src/main/org/h2/res/_*.*) can now be translated. @changelog_1220_li Part of the documentation has been translated to Japanese by Yusuke Fukushima. @changelog_1221_li Some Unicode characters where not supported as identifier name. Thanks Yusuke Fukushima for reporting this problem. @changelog_1222_li The default value DEFAULT_MAX_LENGTH_INPLACE_LOB has been changed from 128 to 1024. @changelog_1223_li A server that implements the PostgreSQL protocol is now included and documented. That means, the PostgreSQL ODBC driver can be used to access a H2 database. See in the documentation for details. @changelog_1224_li The experimental H2 ODBC driver has been removed. @changelog_1225_li The default value for h2.defaultMaxMemoryUndo is now 50000. This avoids out of memory problems when using large transactions, however large transactions are slower because they are buffered to disk. To disable, use -Dh2.defaultMaxMemoryUndo=2000000000. @changelog_1226_li Support for regular expression function REGEXP_REPLACE(expression, regex, replacement) and regular expression LIKE: expression REGEXP matchExpression. However, indexes are not yet used. @changelog_1227_li The old view implementation has been removed. @changelog_1228_li The SysTray tool has been removed, because JDK 1.6 has native support for system tray icons. Use the Console tool (org.h2.tools.Console) automatically installs a system tray icon if JDK 1.6 is used. @changelog_1229_li H2 Console: In the last release, the shutdown button did not work. Fixed. @changelog_1230_li Referential integrity can now be disabled using SET REFERENTIAL_INTEGRITY FALSE. It can also be disable only for one table using ALTER TABLE SET REFERENTIAL_INTEGRITY FALSE. @changelog_1231_li The Backup and Restore tools, and the BACKUP command did not back up LOBs when h2.lobFilesInDirectories was enabled. Fixed. @changelog_1232_li Calculation of cache memory usage has been improved. @changelog_1233_li In some situations record were released too late from the cache. Fixed. @changelog_1234_li The cache size is now measured in KB instead of blocks of 128 byte. @changelog_1235_li CREATE TABLE ... AS SELECT now needs less memory. While inserting the rows, the undo log is temporarily disabled. This avoid out of memory problems when creating large tables. @changelog_1236_li The per session undo log can now be disabled. This setting is useful for bulk operations that don't need to be atomic, like bulk delete or update. @changelog_1237_li The database file could get corrupted when there was an OutOfMemoryException in the middle of inserting a row. @changelog_1238_li Optimization for WHERE NOT(...) and WHERE [NOT] booleanFlagColumn. This can be disabled using the system property h2.optimizeNot. @changelog_1239_li Optimization for conditions like WHERE A=B AND B=X (A=X is added). This often appears in joins. This can be disabled using the system property h2.optimizeTwoEquals. @changelog_1240_li Documentation: the source code in 'Compacting a Database' was incorrect. Fixed. @changelog_1241_li In the H2 Console, result sets could not be modified because the default result set type is now forward only. For H2, now uses scrollable result sets. Also for other databases, but only when the query starts with @EDIT. @changelog_1242_li Views using UNION did not work correctly. Fixed. @changelog_1243_li Function tables did not work with views and EXPLAIN. Fixed. @download_1000_h1 Downloads @download_1001_h3 Version 1.0.67 (2008-02-22, Current) @download_1002_a Windows Installer @download_1003_a Platform-Independent Zip @download_1004_h3 Version 1.0.66 (2008-02-02, Last Stable) @download_1005_a Windows Installer @download_1006_a Platform-Independent Zip @download_1007_h3 Download Mirror and Older Versions @download_1008_a Platform-Independent Zip @download_1009_h3 Subversion Source Repository @download_1010_a Google Code @download_1011_p For details about changes, see the <a href="history.html">Change Log</a> . @faq_1000_h1 Frequently Asked Questions @faq_1001_a Are there Known Bugs? When is the Next Release? @faq_1002_a Is this Database Engine Open Source? @faq_1003_a My Query is Slow @faq_1004_a How to Create a New Database? @faq_1005_a How to Connect to a Database? @faq_1006_a Where are the Database Files Stored? @faq_1007_a What is the Size Limit (Maximum Size) of a Database? @faq_1008_a Is it Reliable? @faq_1009_a Is the GCJ Version Stable? Faster? @faq_1010_a How to Translate this Project? @faq_1011_h3 Are there Known Bugs? When is the Next Release? @faq_1012_p Usually, bugs get fixes as they are found. There is a release every few weeks. Here is the list of known and confirmed issues: @faq_1013_li Some problems have been found with right outer join. Internally, it is converted to left outer join, which does not always produce the same results as other databases when used in combination with other joins. @faq_1014_h3 Is this Database Engine Open Source? @faq_1015_p Yes. It is free to use and distribute, and the source code is included. See also under license. @faq_1016_h3 My Query is Slow @faq_1017_p Slow SELECT (or DELETE, UPDATE, MERGE) statement can have multiple reasons. Follow this checklist: @faq_1018_li Run ANALYSE (see documentation for details). @faq_1019_li Run the query with EXPLAIN and check if indexes are used (see documentation for details). @faq_1020_li If required, create additional indexes and try again using ANALYZE and EXPLAIN. @faq_1021_li If it doesn't help please report the problem. @faq_1022_h3 How to Create a New Database? @faq_1023_p By default, a new database is automatically created if it does not yet exist. @faq_1024_h3 How to Connect to a Database? @faq_1025_p The database driver is <code>org.h2.Driver</code> , and the database URL starts with <code>jdbc:h2:</code> . To connect to a database using JDBC, use the following code: @faq_1026_h3 Where are the Database Files Stored? @faq_1027_p When using database URLs like jdbc:h2:~/test, the database is stored in the user directory. For Windows, this is usually C:\Documents and Settings\<userName>. If the base directory is not set (as in jdbc:h2:test), the database files are stored in the directory where the application is started (the current working directory). When using the H2 Console application from the start menu, this is [Installation Directory]/bin. The base directory can be set in the database URL. A fixed or relative path can be used. When using the URL jdbc:h2:file:data/sample, the database is stored in the directory data (relative to the current working directory). The directory must exist. It is also possible to use the fully qualified directory (and for Windows, drive) name. Example: jdbc:h2:file:C:/data/test @faq_1028_h3 What is the Size Limit (Maximum Size) of a Database? @faq_1029_p The theoretical limit is currently 256 GB for the data. This number is excluding BLOB and CLOB data: Every CLOB or BLOB can be up to 256 GB as well. The size limit of the index data is 256 GB as well. @faq_1030_p The maximum file size for FAT or FAT32 file systems is 4 GB. So if you use FAT or FAT32, the limit is 4 GB for the data. @faq_1031_h3 Is it Reliable? @faq_1032_p That is not easy to say. It is still a quite new product. A lot of tests have been written, and the code coverage of these tests is very high. Randomized stress tests are run regularly. But as this is a relatively new product, there are probably some problems that have not yet been found. Areas that are not fully tested: @faq_1033_li Platforms other than Windows XP and the Sun JVM 1.4 and 1.5 @faq_1034_li The MVCC (multi version concurrency) mode @faq_1035_li The persistent linear hash index @faq_1036_li Cluster mode, 2-Phase Commit, Savepoints @faq_1037_li Multi-Threading and using multiple connections @faq_1038_li 24/7 operation and large databases (500 MB and up) @faq_1039_li Updatable result sets @faq_1040_li Referential integrity and check constraints, Triggers @faq_1041_li ALTER TABLE statements, Views, Linked Tables, Schema, UNION @faq_1042_li Not all built-in functions are completely tested @faq_1043_li The Optimizer may not always select the best plan @faq_1044_li Data types BLOB, CLOB, VARCHAR_IGNORECASE, OTHER @faq_1045_li Server mode (well tested, but not as well as Embedded mode) @faq_1046_li Wide indexes with large VARCHAR or VARBINARY columns and / or with a lot of columns @faq_1047_p Areas considered Experimental: @faq_1048_li The PostgreSQL server @faq_1049_li Linear Hash Index @faq_1050_li Compatibility modes for other databases (only some features are implemented) @faq_1051_li The ARRAY data type and related functionality @faq_1052_h3 Is the GCJ Version Stable? Faster? @faq_1053_p The GCJ version is not as stable as the Java version. When running the regression test with the GCJ version, sometimes the application just stops at what seems to be a random point without error message. Currently, the GCJ version is also slower than when using the Sun VM. However, the startup of the GCJ version is faster than when using a VM. @faq_1054_h3 How to Translate this Project? @faq_1055_p For more information, see <a href="build.html#translating">Build/Translating</a> . @features_1000_h1 Features @features_1001_a Feature List @features_1002_a Limitations @features_1003_a Comparison to Other Database Engines @features_1004_a H2 in Use @features_1005_a Connection Modes @features_1006_a Database URL Overview @features_1007_a Memory-Only Databases @features_1008_a Connecting to a Database with File Encryption @features_1009_a Database File Locking @features_1010_a Opening a Database Only if it Already Exists @features_1011_a Closing the Database @features_1012_a Log Index Changes @features_1013_a Custom File Access Mode @features_1014_a Multiple Connections @features_1015_a Database File Layout @features_1016_a Logging and Recovery @features_1017_a Compatibility @features_1018_a Using the Trace Options @features_1019_a Read Only Databases @features_1020_a Read Only Databases in Zip or Jar File @features_1021_a Binary and Text Storage Formats @features_1022_a Graceful Handling of Low Disk Space Situations @features_1023_a Computed Columns / Function Based Index @features_1024_a Multi-Dimensional Indexes @features_1025_a Using Passwords @features_1026_a User Defined Functions and Stored Procedures @features_1027_a Triggers @features_1028_a Compacting a Database @features_1029_a Cache Settings @features_1030_h2 Feature List @features_1031_h3 Main Features @features_1032_li Very fast database engine @features_1033_li Free, with source code @features_1034_li Written in Java @features_1035_li Supports standard SQL, JDBC API @features_1036_li Embedded and Server mode, Clustering support @features_1037_li Strong security features @features_1038_li Experimental native version (GCJ) and ODBC drivers @features_1039_h3 Additional Features @features_1040_li Disk based or in-memory databases and tables, read-only database support, temporary tables @features_1041_li Transaction support (read committed and serializable transaction isolation), 2-phase-commit @features_1042_li Multiple connections, table level locking @features_1043_li Cost based optimizer, using a genetic algorithm for complex queries, zero-administration @features_1044_li Scrollable and updatable result set support, large result set, external result sorting, functions can return a result set @features_1045_li Encrypted database (AES or XTEA), SHA-256 password encryption, encryption functions, SSL @features_1046_h3 SQL Support @features_1047_li Support for multiple schemas, information schema @features_1048_li Referential integrity / foreign key constraints with cascade, check constraints @features_1049_li Inner and outer joins, subqueries, read only views and inline views @features_1050_li Triggers and Java functions / stored procedures @features_1051_li Many built-in functions, including XML and lossless data compression @features_1052_li Wide range of data types including large objects (BLOB/CLOB) and arrays @features_1053_li Sequence and autoincrement columns, computed columns (can be used for function based indexes) @features_1054_li ORDER BY, GROUP BY, HAVING, UNION, LIMIT, TOP @features_1055_li Collation support, users, roles @features_1056_li Compatibility modes for HSQLDB, MySQL and PostgreSQL @features_1057_h3 Security Features @features_1058_li Includes a solution for the SQL injection problem @features_1059_li User password authenticated uses SHA-256 and salt @features_1060_li User passwords are never transmitted in plain text over the network (even when using insecure connections) @features_1061_li All database files (including script files that can be used to backup data) can be encrypted using AES-256 and XTEA encryption algorithms @features_1062_li The remote JDBC driver supports TCP/IP connections over SSL/TLS @features_1063_li The built-in web server supports connections over SSL/TLS @features_1064_li Passwords can be sent to the database using char arrays instead of Strings @features_1065_h3 Other Features and Tools @features_1066_li Small footprint (smaller than 1 MB), low memory requirements @features_1067_li Multiple index types (b-tree, tree, hash, linear hash) @features_1068_li Support for multi-dimensional indexes @features_1069_li CSV (comma separated values) file support @features_1070_li Support for linked tables, and a built-in virtual 'range' table @features_1071_li EXPLAIN PLAN support, sophisticated trace options @features_1072_li Database closing can be delayed or disabled to improve the performance @features_1073_li Web-based Console application (English, German, partially French and Spanish) with autocomplete @features_1074_li The database can generate SQL script files @features_1075_li Contains a recovery tool that can dump the contents of the data file @features_1076_li Support for variables (for example to calculate running totals) @features_1077_li Automatic re-compilation of prepared statements @features_1078_li Uses a small number of database files, binary and text storage formats, graceful handling of low disk space situations @features_1079_li Uses a checksum for each record and log entry for data integrity @features_1080_li Well tested (high code coverage, randomized stress tests) @features_1081_h2 Limitations @features_1082_p For the list of limitations, please have a look at the road map page at: <a href="http://groups.google.com/group/h2-database/web/roadmap">http://groups.google.com/group/h2-database/web/roadmap</a> @features_1083_h2 Comparison to Other Database Engines @features_1084_th Feature @features_1085_th H2 @features_1086_th Derby @features_1087_th HSQLDB @features_1088_th MySQL @features_1089_th PostgreSQL @features_1090_td Pure Java @features_1091_td Yes @features_1092_td Yes @features_1093_td Yes @features_1094_td No @features_1095_td No @features_1096_td Embedded Mode (Java) @features_1097_td Yes @features_1098_td Yes @features_1099_td Yes @features_1100_td No @features_1101_td No @features_1102_td Performance (Embedded) @features_1103_td Fast @features_1104_td Slow @features_1105_td Fast @features_1106_td N/A @features_1107_td N/A @features_1108_td In-Memory Mode @features_1109_td Yes @features_1110_td No @features_1111_td Yes @features_1112_td No @features_1113_td No @features_1114_td Transaction Isolation @features_1115_td Yes @features_1116_td Yes @features_1117_td No @features_1118_td Yes @features_1119_td Yes @features_1120_td Cost Based Optimizer @features_1121_td Yes @features_1122_td Yes @features_1123_td No @features_1124_td Yes @features_1125_td Yes @features_1126_td Clustering @features_1127_td Yes @features_1128_td No @features_1129_td No @features_1130_td Yes @features_1131_td Yes @features_1132_td Encrypted Database @features_1133_td Yes @features_1134_td Yes @features_1135_td No @features_1136_td No @features_1137_td No @features_1138_td ODBC Driver @features_1139_td Yes @features_1140_td Yes? @features_1141_td No @features_1142_td Yes @features_1143_td Yes @features_1144_td Fulltext Search @features_1145_td Yes @features_1146_td No @features_1147_td No @features_1148_td Yes @features_1149_td Yes @features_1150_td User Defined Datatypes @features_1151_td Yes @features_1152_td No @features_1153_td No @features_1154_td Yes @features_1155_td Yes @features_1156_td Files per Database @features_1157_td Few @features_1158_td Many @features_1159_td Few @features_1160_td Many @features_1161_td Many @features_1162_td Footprint (jar/dll size) @features_1163_td ~ 1 MB @features_1164_td ~ 2 MB @features_1165_td ~ 600 KB @features_1166_td ~ 4 MB @features_1167_td ~ 6 MB @features_1168_h3 Derby and HSQLDB @features_1169_p After an unexpected process termination (for example power failure), H2 can recover safely and automatically without any user interaction. For Derby and HSQLDB, there are some manual steps required ('Another instance of Derby may have already booted the database' / 'The database is already in use by another process'). @features_1170_h3 DaffodilDb and One$Db @features_1171_p It looks like the development of this database has stopped. The last release was February 2006. @features_1172_h3 McKoi @features_1173_p It looks like the development of this database has stopped. The last release was August 2004 @features_1174_h2 H2 in Use @features_1175_p For a list of applications that work with or use H2, see: <a href="http://groups.google.com/group/h2-database/web/h2-in-use">http://groups.google.com/group/h2-database/web/h2-in-use</a> @features_1176_h2 Connection Modes @features_1177_p The following connection modes are supported: @features_1178_li Local connections using JDBC (embedded) @features_1179_li Remote connections using JDBC over TCP/IP (client/server) @features_1180_li Remote connections using ODBC over TCP/IP (client/server) @features_1181_li In-Memory databases (private and shared) @features_1182_h2 Database URL Overview @features_1183_p This database does support multiple connection modes and features when connecting to a database. This is achieved using different database URLs. The settings in the URLs are not case sensitive. @features_1184_th Topic @features_1185_th URL Format and Examples @features_1186_td Embedded (local) connection @features_1187_td jdbc:h2:[file:][<path>]<databaseName> @features_1188_td jdbc:h2:~/test @features_1189_td jdbc:h2:file:/data/sample @features_1190_td jdbc:h2:file:C:/data/sample (Windows only) @features_1191_td In-Memory (private) @features_1192_td jdbc:h2:mem: @features_1193_td In-Memory (named) @features_1194_td jdbc:h2:mem:<databaseName> @features_1195_td jdbc:h2:mem:test_mem @features_1196_td Remote using TCP/IP @features_1197_td jdbc:h2:tcp://<server>[:<port>]/<databaseName> @features_1198_td jdbc:h2:tcp://localhost/test @features_1199_td jdbc:h2:tcp://dbserv:8084/sample @features_1200_td Remote using SSL/TLS @features_1201_td jdbc:h2:ssl://<server>[:<port>]/<databaseName> @features_1202_td jdbc:h2:ssl://secureserv:8085/sample; @features_1203_td Using Encrypted Files @features_1204_td jdbc:h2:<url>;CIPHER=[AES|XTEA] @features_1205_td jdbc:h2:ssl://secureserv/testdb;CIPHER=AES @features_1206_td jdbc:h2:file:~/secure;CIPHER=XTEA @features_1207_td File Locking Methods @features_1208_td jdbc:h2:<url>;FILE_LOCK={NO|FILE|SOCKET} @features_1209_td jdbc:h2:file:~/quickAndDirty;FILE_LOCK=NO @features_1210_td jdbc:h2:file:~/private;CIPHER=XTEA;FILE_LOCK=SOCKET @features_1211_td Only Open if it Already Exists @features_1212_td jdbc:h2:<url>;IFEXISTS=TRUE @features_1213_td jdbc:h2:file:~/sample;IFEXISTS=TRUE @features_1214_td Don't Close the Database when the VM Exits @features_1215_td jdbc:h2:<url>;DB_CLOSE_ON_EXIT=FALSE @features_1216_td User Name and/or Password @features_1217_td jdbc:h2:<url>[;USER=<username>][;PASSWORD=<value>] @features_1218_td jdbc:h2:file:~/sample;USER=sa;PASSWORD=123 @features_1219_td Log Index Changes @features_1220_td jdbc:h2:<url>;LOG=2 @features_1221_td jdbc:h2:file:~/sample;LOG=2 @features_1222_td Debug Trace Settings @features_1223_td jdbc:h2:<url>;TRACE_LEVEL_FILE=<level 0..3> @features_1224_td jdbc:h2:file:~/sample;TRACE_LEVEL_FILE=3 @features_1225_td Ignore Unknown Settings @features_1226_td jdbc:h2:<url>;IGNORE_UNKNOWN_SETTINGS=TRUE @features_1227_td Custom File Access Mode @features_1228_td jdbc:h2:<url>;ACCESS_MODE_LOG=rws;ACCESS_MODE_DATA=rws @features_1229_td In-Memory (private) @features_1230_td jdbc:h2:mem: @features_1231_td Database in or Zip File @features_1232_td jdbc:h2:zip:<zipFileName>!/<databaseName> @features_1233_td jdbc:h2:zip:db.zip!/test @features_1234_td Changing Other Settings @features_1235_td jdbc:h2:<url>;<setting>=<value>[;<setting>=<value>...] @features_1236_td jdbc:h2:file:~/sample;TRACE_LEVEL_SYSTEM_OUT=3 @features_1237_h3 Connecting to an Embedded (Local) Database @features_1238_p The database URL for connecting to a local database is <code>jdbc:h2:[file:][<path>]<databaseName></code> . The prefix <code>file:</code> is optional. If no or only a relative path is used, then the current working directory is used as a starting point. The case sensitivity of the path and database name depend on the operating system, however it is suggested to use lowercase letters only. The database name must be at least three characters long (a limitation of File.createTempFile). To point to the user home directory, use ~/, as in: jdbc:h2:~/test. @features_1239_h2 Memory-Only Databases @features_1240_p For certain use cases (for example: rapid prototyping, testing, high performance operations, read-only databases), it may not be required to persist (changes to) the data at all. This database supports the memory-only mode, where the data is not persisted. @features_1241_p In some cases, only one connection to a memory-only database is required. This means the database to be opened is private. In this case, the database URL is <code>jdbc:h2:mem:</code> Opening two connections within the same virtual machine means opening two different (private) databases. @features_1242_p Sometimes multiple connections to the same memory-only database are required. In this case, the database URL must include a name. Example: <code>jdbc:h2:mem:db1</code> . Accessing the same database in this way only works within the same virtual machine and class loader environment. @features_1243_p It is also possible to access a memory-only database remotely (or from multiple processes in the same machine) using TCP/IP or SSL/TLS. An example database URL is: <code>jdbc:h2:tcp://localhost/mem:db1</code> (using private database remotely is also possible). @features_1244_p By default, when the last connection to a in-memory database is closed, the contents are lost. This can be disabled by adding ;DB_CLOSE_DELAY=-1 to the database URL. That means to keep the contents of an in-memory database as long as the virtual machine is alive, use jdbc:h2:mem:test;DB_CLOSE_DELAY=-1 @features_1245_h2 Connecting to a Database with File Encryption @features_1246_p To use file encryption, it is required to specify the encryption algorithm (the 'cipher') and the file password. The algorithm needs to be specified using the connection parameter. Two algorithms are supported: XTEA and AES. The file password is specified in the password field, before the user password. A single space needs to be added between the file password and the user password; the file password itself may not contain spaces. File passwords (as well as user passwords) are case sensitive. Here is an example to connect to a password encrypted database: @features_1247_h2 Database File Locking @features_1248_p Whenever a database is opened, a lock file is created to signal other processes that the database is in use. If database is closed, or if the process that opened the database terminates, this lock file is deleted. @features_1249_p The following file locking methods are implemented: @features_1250_li The default method is 'file' and uses a watchdog thread to protect the database file. The watchdog reads the lock file each second. @features_1251_li The second method is 'socket' and opens a server socket. The socket method does not require reading the lock file every second. The socket method should only be used if the database files are only accessed by the one (and always the same) computer. @features_1252_li It is also possible to open the database without file locking; in this case it is up to the application to protect the database files. @features_1253_p To open the database with a different file locking method, use the parameter 'FILE_LOCK'. The following code opens the database with the 'socket' locking method: @features_1254_p The following code forces the database to not create a lock file at all. Please note that this is unsafe as another process is able to open the same database, possibly leading to data corruption: @features_1255_p For more information about the algorithms please see in Advanced Topics under File Locking Protocol. @features_1256_h2 Opening a Database Only if it Already Exists @features_1257_p By default, when an application calls <code>DriverManager.getConnection(url,...)</code> and the database specified in the URL does not yet exist, a new (empty) database is created. In some situations, it is better to restrict creating new database, and only open the database if it already exists. This can be done by adding <code>;ifexists=true</code> to the URL. In this case, if the database does not already exist, an exception is thrown when trying to connect. The connection only succeeds when the database already exists. The complete URL may look like this: @features_1258_h2 Closing the Database @features_1259_h3 Delayed Database Closing @features_1260_p Usually, the database is closed when the last connection to it is closed. In some situations this slows down the application, for example when it is not possible leave the connection open. The automatic closing of the database can be delayed or disabled with the SQL statement SET DB_CLOSE_DELAY <seconds>. The seconds specifies the number of seconds to keep a database open after the last connection to it was closed. For example the following statement will keep the database open for 10 seconds: @features_1261_p The value -1 means the database is never closed automatically. The value 0 is the default and means the database is closed when the last connection is closed. This setting is persistent and can be set by an administrator only. It is possible to set the value in the database URL: <code>jdbc:h2:~/test;DB_CLOSE_DELAY=10</code> . @features_1262_h3 Don't Close the Database when the VM Exits @features_1263_p By default, a database is closed when the last connection is closed. However, if it is never closed, the database is closed when the virtual machine exits normally. This is done using a shutdown hook. In some situations, the database should not be closed in this case, for example because the database is still used at virtual machine shutdown (to store the shutdown process in the database for example). For those cases, the automatic closing of the database can be disabled in the database URL. The first connection (the one that is opening the database) needs to set the option in the database URL (it is not possible to change the setting afterwards). The database URL to disable database closing on exit is: @features_1264_h2 Log Index Changes @features_1265_p Usually, changes to the index file are not logged for performance. If the index file is corrupt or missing when opening a database, it is re-created from the data. The index file can get corrupt when the database is not shut down correctly, because of power failure or abnormal program termination. In some situations, for example when using very large databases (over a few hundred MB), re-creating the index file takes very long. In these situations it may be better to log changes to the index file, so that recovery from a corrupted index file is fast. To enable log index changes, add LOG=2 to the URL, as in jdbc:h2:~/test;LOG=2 This setting should be specified when connecting. The update performance of the database will be reduced when using this option. @features_1266_h3 Ignore Unknown Settings @features_1267_p Some applications (for example OpenOffice.org Base) pass some additional parameters when connecting to the database. Why those parameters are passed is unknown. The parameters PREFERDOSLIKELINEENDS and IGNOREDRIVERPRIVILEGES are such examples, they are simply ignored to improve the compatibility with OpenOffice.org. If an application passes other parameters when connecting to the database, usually the database throws an exception saying the parameter is not supported. It is possible to ignored such parameters by adding ;IGNORE_UNKNOWN_SETTINGS=TRUE to the database URL. @features_1268_h3 Changing Other Settings when Opening a Connection @features_1269_p In addition to the settings already described (cipher, file_lock, ifexists, user, password), other database settings can be passed in the database URL. Adding <code>setting=value</code> at the end of an URL is the same as executing the statement <code>SET setting value</code> just after connecting. For a list of settings supported by this database please see the SQL grammar documentation. @features_1270_h2 Custom File Access Mode @features_1271_p Usually, the database opens log, data and index files with the access mode 'rw', meaning read-write (except for read only databases, where the mode 'r' is used). To open a database in read-only mode if the files are not read-only, use ACCESS_MODE_DATA=r. Also supported are 'rws' and 'rwd'. The access mode used for log files is set via ACCESS_MODE_LOG; for data and index files use ACCESS_MODE_DATA. These settings must be specified in the database URL: @features_1272_p For more information see <a href="advanced.html#durability_problems">Durability Problems</a> . On many operating systems the access mode 'rws' does not guarantee that the data is written to the disk. @features_1273_h2 Multiple Connections @features_1274_h3 Opening Multiple Databases at the Same Time @features_1275_p An application can open multiple databases at the same time, including multiple connections to the same database. The number of open database is only limited by the memory available. @features_1276_h3 Multiple Connections to the Same Database: Client/Server @features_1277_p If you want to access the same database at the same time from different processes or computers, you need to use the client / server mode. In this case, one process acts as the server, and the other processes (that could reside on other computers as well) connect to the server via TCP/IP (or SSL/TLS over TCP/IP for improved security). @features_1278_h3 Multithreading Support @features_1279_p This database is multithreading-safe. That means, if an application is multi-threaded, it does not need o worry about synchronizing the access to the database. Internally, most requests to the same database are synchronized. That means an application can use multiple threads all accessing the same database at the same time, however if one thread executes a long running query, the other threads need to wait. @features_1280_h3 Locking, Lock-Timeout, Deadlocks @features_1281_p The database uses table level locks to give each connection a consistent state of the data. There are two kinds of locks: read locks (shared locks) and write locks (exclusive locks). If a connection wants to reads from a table, and there is no write lock on the table, then a read lock is added to the table. If there is a write lock, then this connection waits for the other connection to release the lock. If connection cannot get a lock for a specified time, then a lock timeout exception is thrown. @features_1282_p Usually, SELECT statement will generate read locks. This includes subqueries. Statements that modify data use write locks. It is also possible to lock a table exclusively without modifying data, using the statement SELECT ... FOR UPDATE. The statements COMMIT and ROLLBACK releases all open locks. The commands SAVEPOINT and ROLLBACK TO SAVEPOINT don't affect locks. The locks are also released when the autocommit mode changes, and for connections with autocommit set to true (this is the default), locks are released after each statement. Here is an overview on what statements generate what type of lock: @features_1283_th Type of Lock @features_1284_th SQL Statement @features_1285_td Read @features_1286_td SELECT * FROM TEST @features_1287_td CALL SELECT MAX(ID) FROM TEST @features_1288_td SCRIPT @features_1289_td Write @features_1290_td SELECT * FROM TEST WHERE 1=0 FOR UPDATE @features_1291_td Write @features_1292_td INSERT INTO TEST VALUES(1, 'Hello') @features_1293_td INSERT INTO TEST SELECT * FROM TEST @features_1294_td UPDATE TEST SET NAME='Hi' @features_1295_td DELETE FROM TEST @features_1296_td Write @features_1297_td ALTER TABLE TEST ... @features_1298_td CREATE INDEX ... ON TEST ... @features_1299_td DROP INDEX ... @features_1300_p The number of seconds until a lock timeout exception is thrown can be set separately for each connection using the SQL command SET LOCK_TIMEOUT <milliseconds>. The initial lock timeout (that is the timeout used for new connections) can be set using the SQL command SET DEFAULT_LOCK_TIMEOUT <milliseconds>. The default lock timeout is persistent. @features_1301_h2 Database File Layout @features_1302_p There are a number of files created for persistent databases. Other than some databases, not every table and/or index is stored in its own file. Instead, usually only the following files are created: A data file, an index file, a log file, and a database lock file (exists only while the database is in use). In addition to that, a file is created for each large object (CLOB/BLOB), a file for each linear index, and temporary files for large result sets. Then the command SCRIPT can create script files. If the database trace option is enabled, trace files are created. The following files can be created by the database: @features_1303_th File Name @features_1304_th Description @features_1305_th Number of Files @features_1306_td test.data.db @features_1307_td Data file @features_1308_td Contains the data for all tables @features_1309_td Format: <database>.data.db @features_1310_td 1 per database @features_1311_td test.index.db @features_1312_td Index file @features_1313_td Contains the data for all (btree) indexes @features_1314_td Format: <database>.index.db @features_1315_td 1 per database @features_1316_td test.0.log.db @features_1317_td Log file @features_1318_td The log file is used for recovery @features_1319_td Format: <database>.<id>.log.db @features_1320_td 0 or more per database @features_1321_td test.lock.db @features_1322_td Database lock file @features_1323_td Exists only if the database is open @features_1324_td Format: <database>.lock.db @features_1325_td 1 per database @features_1326_td test.trace.db @features_1327_td Trace file @features_1328_td Contains trace information @features_1329_td Format: <database>.trace.db @features_1330_td If the file is too big, it is renamed to <database>.trace.db.old @features_1331_td 1 per database @features_1332_td test.14.15.lob.db @features_1333_td Large object @features_1334_td Contains the data for BLOB or CLOB @features_1335_td Format: <database>.<tableid>.<id>.lob.db @features_1336_td 1 per object @features_1337_td test.123.temp.db @features_1338_td Temporary file @features_1339_td Contains a temporary blob or a large result set @features_1340_td Format: <database>.<session id>.<object id>.temp.db @features_1341_td 1 per object @features_1342_td test.7.hash.db @features_1343_td Hash index file @features_1344_td Contains the data for a linear hash index @features_1345_td Format: <database>.<object id>.hash.db @features_1346_td 1 per linear hash index @features_1347_h3 Moving and Renaming Database Files @features_1348_p Database name and location are not stored inside the database names. @features_1349_p While a database is closed, the files can be moved to another directory, and they can be renamed as well (as long as all files start with the same name). @features_1350_p As there is no platform specific data in the files, they can be moved to other operating systems without problems. @features_1351_h3 Backup @features_1352_p When the database is closed, it is possible to backup the database files. Please note that index files do not need to be backed up, because they contain redundant data, and will be recreated automatically if they don't exist. @features_1353_p To backup data while the database is running, the SQL command SCRIPT can be used. @features_1354_h2 Logging and Recovery @features_1355_p Whenever data is modified in the database and those changes are committed, the changes are logged to disk (except for in-memory objects). The changes to the data file itself are usually written later on, to optimize disk access. If there is a power failure, the data and index files are not up-to-date. But because the changes are in the log file, the next time the database is opened, the changes that are in the log file are re-applied automatically. @features_1356_p Please note that index file updates are not logged by default. If the database is opened and recovery is required, the index file is rebuilt from scratch. @features_1357_p There is usually only one log file per database. This file grows until the database is closed successfully, and is then deleted. Or, if the file gets too big, the database switches to another log file (with a higher id). It is possible to force the log switching by using the CHECKPOINT command. @features_1358_p If the database file is corrupted, because the checksum of a record does not match (for example, if the file was edited with another application), the database can be opened in recovery mode. In this case, errors in the database are logged but not thrown. The database should be backed up to a script and re-built as soon as possible. To open the database in the recovery mode, use a database URL must contain RECOVER=1, as in jdbc:h2:~/test;RECOVER=1. Indexes are rebuilt in this case, and the summary (object allocation table) is not read in this case, so opening the database takes longer. @features_1359_h2 Compatibility @features_1360_p All database engines behave a little bit different. Where possible, H2 supports the ANSI SQL standard, and tries to be compatible to other databases. There are still a few differences however: @features_1361_p In MySQL text columns are case insensitive by default, while in H2 they are case sensitive. However H2 supports case insensitive columns as well. To create the tables with case insensitive texts, append IGNORECASE=TRUE to the database URL (example: jdbc:h2:test;IGNORECASE=TRUE). @features_1362_h3 Compatibility Modes @features_1363_p For certain features, this database can emulate the behavior of specific databases. Not all features or differences of those databases are implemented. Currently, this feature is mainly used for randomized comparative testing (where random statements are executed against multiple databases and the results are compared). The mode can be changed by specifying the mode in the database URL, or using the SQL statement SET MODE. To use the HSQLDB mode, you can use the database URL <code>jdbc:h2:~/test;MODE=HSQLDB</code> or the SQL statement <code>SET MODE HSQLDB</code> . Here is the list of currently supported modes and the difference to the regular mode: @features_1364_th Mode @features_1365_th Differences @features_1366_td PostgreSQL @features_1367_td Concatenation of a NULL with another value results in NULL. Usually, the NULL is treated as an empty string if only one of the operators is NULL, and NULL is only returned if both values are NULL. @features_1368_td MySQL @features_1369_td When inserting data, if a column is defined to be NOT NULL and NULL is inserted, then a 0 (or empty string, or the current timestamp for timestamp columns) value is used. Usually, this operation is not allowed and an exception is thrown. @features_1370_td HSQLDB @features_1371_td When converting the scale of decimal data, the number is only converted if the new scale is smaller then current scale. Usually, the scale is converted and 0s are added if required. @features_1372_h2 Using the Trace Options @features_1373_p To find problems in an application, it is sometimes good to see what database operations where executed. This database offers the following trace features: @features_1374_li Trace to System.out and/or a file @features_1375_li Support for trace levels OFF, ERROR, INFO, and DEBUG @features_1376_li The maximum size of the trace file can be set @features_1377_li The Java code generation is possible @features_1378_li Trace can be enabled at runtime by manually creating a file @features_1379_h3 Trace Options @features_1380_p The simplest way to enable the trace option is setting it in the database URL. There are two settings, one for System.out (TRACE_LEVEL_SYSTEM_OUT) tracing, and one for file tracing (TRACE_LEVEL_FILE). The trace levels are 0 for OFF, 1 for ERROR (the default), 2 for INFO and 3 for DEBUG. A database URL with both levels set to DEBUG is: @features_1381_p The trace level can be changed at runtime by executing the SQL command <code>SET TRACE_LEVEL_SYSTEM_OUT level</code> (for System.out tracing) or <code>SET TRACE_LEVEL_FILE level</code> (for file tracing). Example: @features_1382_h3 Setting the Maximum Size of the Trace File @features_1383_p When using a high trace level, the trace file can get very big quickly. The size of the file can be limited by executing the SQL statement <code>SET TRACE_MAX_FILE_SIZE maximumFileSizeInMB</code> . If the log file exceeds the limit, the file is renamed to .old and a new file is created. If another .old file exists, it is deleted. The default setting is 16 MB. Example: @features_1384_h3 Java Code Generation @features_1385_p When setting the trace level to INFO or DEBUG, Java source code is generated as well, so that problem can be reproduced more easily. The trace file looks like this: @features_1386_p You need to filter out the lines without /**/ to get the Java source code. In Windows, a simple way to do that is: @features_1387_p Afterwards, you need to complete the file Trace.java before it can be compiled, for example with: @features_1388_p Also, the user name and password needs to be set, because they are not listed in the trace file. @features_1389_h3 Enabling the Trace Option at Runtime by Manually Creating a File @features_1390_p Sometimes, you can't or don't want to change the application or database URL. There is still a way to enable the trace mode in these cases, even at runtime (while the database connection is open). You only need to create a special file in the directory where the database files are stored. The database engine checks every 4 seconds if this file exists (only while executing a statement). The file name is the database name plus '.trace.db.start'. This feature is disabled if the database is encrypted. @features_1391_p Example: if a database is called 'test', then the file to start tracing is 'test.trace.db.start'. The database engine tries to delete this file when it detects it. If trace is enabled using the start file, the trace level is not persistent to the database, and trace is switched back to the level that was set before when connecting to the database. However, if the start file is read only, the database engine cannot delete the file and will always enable the trace mode when connecting. @features_1392_h2 Read Only Databases @features_1393_p If the database files are read-only, then the database is read-only as well. It is not possible to create new tables, add or modify data in this database. Only SELECT statements are allowed. To create a read-only database, close the database so that the log file gets smaller. Do not delete the log file. Then, make the database files read-only using the operating system. When you open the database now, it is read-only. There are two ways an application can find out a database is read-only: By calling Connection.isReadOnly() or by executing the SQL statement CALL READONLY(). @features_1394_h2 Read Only Databases in Zip or Jar File @features_1395_p To create a read-only database in a zip, first create a regular persistent database, and then create a backup. If you are using a database named 'test', an easy way to do that is using the BACKUP SQL statement: @features_1396_p Afterwards, you can log out, and directly open the database in the zip file using the following database URL: @features_1397_p Databases in a zip file are read-only. The performance for some queries will be slower than when using a regular database, because random access in zip files is not supported (only streaming). How much this affects the performance depends on the queries and the data. The database is not read in memory, so large databases are supported as well. The same indexes are used than when using a regular database. @features_1398_h2 Binary and Text Storage Formats @features_1399_p This database engine supports both binary and text storage formats. The binary format is faster, but the text storage format can be useful as well, for example to debug the database engine. If a database already exists, the storage format is recognized automatically. New databases are created in the binary storage format by default. To create a new database in the text storage format, the database URL must contain the parameter STORAGE=TEXT. Example URL: jdbc:h2:~/test;STORAGE=TEXT @features_1400_h2 Graceful Handling of Low Disk Space Situations @features_1401_p The database is able to deal with situations where the disk space available is running low. Whenever the database starts, an 'emergency space' file is created (size is 1 MB), and if there is no more space available, the file will shrink. If the space available is lower than 128 KB, the database will go into a special read only mode, where writing operations are no longer allowed: All writing operations will throw the exception 'No disk space available' from this point on. To go back to the normal operating mode, all connections to the database need to be closed first, and space needs to be freed up. @features_1402_p It is possible to install a database event listener to detect low disk space situations early on (when only 1 MB if space is available). To do this, use the SQL statement SET DATABASE_EVENT_LISTENER. The listener can also be set at connection time, using an URL of the form jdbc:h2:~/test;DATABASE_EVENT_LISTENER='com.acme.DbListener' (the quotes around the class name are required). See also the DatabaseEventListener API. @features_1403_h3 Opening a Corrupted Database @features_1404_p If a database can not be opened because the boot info (the SQL script that is run at startup) is corrupted, then the database can be opened by specifying a database event listener. The exceptions are logged, but opening the database will continue. @features_1405_h2 Computed Columns / Function Based Index @features_1406_p Function indexes are not directly supported by this database, but they can be easily emulated by using computed columns. For example, if an index on the upper-case version of a column is required, just create a computed column with the upper-case version of the original column, and index this column: @features_1407_p When inserting data, it is not required (better: not allowed) to specify a value for the upper-case version of the column, because the value is generated. But you can use the column when querying the table: @features_1408_h2 Multi-Dimensional Indexes @features_1409_p A tool is provided to execute efficient multi-dimension (spatial) range queries. This database does not support a specialized spatial index (R-Tree or similar). Instead, the B-Tree index is used. For each record, the multi-dimensional key is converted (mapped) to a single dimensional (scalar) value. This value specifies the location on a space-filling curve. @features_1410_p Currently, Z-order (also called N-order or Morton-order) is used; Hilbert curve could also be used, but the implementation is more complex. The algorithm to convert the multi-dimensional value is called bit-interleaving. The scalar value is indexed using a B-Tree index (usually using a computed column). @features_1411_p The method can result in a drastic performance improvement over just using an index on the first column. Depending on the data and number of dimensions, the improvement is usually higher than factor 5. The tool generates a SQL query from a specified multi-dimensional range. The method used is not database dependent, and the tool can easily be ported to other databases. For an example how to use the tool, please have a look at the sample code provided in TestMultiDimension.java. @features_1412_h2 Using Passwords @features_1413_h3 Using Secure Passwords @features_1414_p Remember that weak passwords can be broken no matter of the encryption and security protocol. Don't use passwords that can be found in a dictionary. Also appending numbers does not make them secure. A way to create good passwords that can be remembered is, take the first letters of a sentence, use upper and lower case characters, and creatively include special characters. Example: @features_1415_p i'sE2rtPiUKtT (it's easy to remember this password if you know the trick) @features_1416_h3 Passwords: Using Char Arrays instead of Strings @features_1417_p Java Strings are immutable objects and cannot be safely 'destroyed' by the application. After creating a String, it will remain in the main memory of the computer at least until it is garbage collected. The garbage collection cannot be controlled by the application, and even if it is garbage collected the data may still remain in memory. It might also be possible that the part of memory containing the password is swapped to disk (because not enough main memory is available). @features_1418_p An attacker might have access to the swap file of the operating system. It is therefore a good idea to use char arrays instead of Strings to store passwords. Char arrays can be cleared (filled with zeros) after use, and therefore the password will not be stored in the swap file. @features_1419_p This database supports using char arrays instead of String to pass user and file passwords. The following code can be used to do that: @features_1420_p In this example, the password is hard code in the application, which is not secure of course. However, Java Swing supports a way to get passwords using a char array (JPasswordField). @features_1421_h3 Passing the User Name and/or Password in the URL @features_1422_p Instead of passing the user name as a separate parameter as in <code>Connection conn = DriverManager. getConnection("jdbc:h2:~/test", "sa", "123");</code> the user name (and/or password) can be supplied in the URL itself: <code>Connection conn = DriverManager. getConnection("jdbc:h2:~/test;USER=sa;PASSWORD=123");</code> The settings in the URL override the settings passed as a separate parameter. @features_1423_h2 User Defined Functions and Stored Procedures @features_1424_p In addition to the built-in functions, this database supports user defined Java functions. In this database, Java functions can be used as stored procedures as well. A function must be declared (registered) before it can be used. Only static Java methods are supported; both the class and the method must be public. Example Java method: @features_1425_p The Java function must be registered in the database by calling CREATE ALIAS: @features_1426_p For a complete sample application, see src/test/org/h2/samples/Function.java. @features_1427_h3 Function Data Type Mapping @features_1428_p Functions that accept non-nullable parameters such as 'int' will not be called if one of those parameters is NULL. In this case, the value NULL is used as the result. If the function should be called in this case, you need to use 'java.lang.Integer' instead of 'int'. @features_1429_h3 Functions that require a Connection @features_1430_p If the first parameter in a Java function is a java.sql.Connection, then the connection to database is provided. This connection does not need to be closed before returning. @features_1431_h3 Functions throwing an Exception @features_1432_p If a function throws an Exception, then the current statement is rolled back and the exception is thrown to the application. @features_1433_h3 Functions returning a Result Set @features_1434_p Functions may returns a result set. Such a function can be called with the CALL statement: @features_1435_h3 Using SimpleResultSet @features_1436_p A function that returns a result set can create this result set from scratch using the SimpleResultSet tool: @features_1437_h3 Using a Function as a Table @features_1438_p A function returning a result set can be like a table. However, in this case the function is called at least twice: First while parsing the statement to collect the column names (with parameters set to null where not known at compile time). And then, while executing the statement to get the data (may be repeatedly if this is a join). If the function is called just to get the column list, the URL of the connection passed to the function is jdbc:columnlist:connection. Otherwise, the URL of the connection is jdbc:default:connection. @features_1439_h2 Triggers @features_1440_p This database supports Java triggers that are called before or after a row is updated, inserted or deleted. Triggers can be used for complex consistency checks, or to update related data in the database. It is also possible to use triggers to simulate materialized views. For a complete sample application, see src/test/org/h2/samples/TriggerSample.java. A Java trigger must implement the interface org.h2.api.Trigger: @features_1441_p The connection can be used to query or update data in other tables. The trigger then needs to be defined in the database: @features_1442_p The trigger can be used to veto a change, by throwing a SQL Exception. @features_1443_h2 Compacting a Database @features_1444_p Empty space in the database file is re-used automatically. To re-build the indexes, the most simple way is to delete the .index.db file while the database is closed. However in some situations (for example after deleting a lot of data in a database), one sometimes wants to shrink the size of the database (compact a database). Here is a sample function to do this: @features_1445_p See also the sample application org.h2.samples.Compact. The commands SCRIPT / RUNSCRIPT can be used as well to create the a backup of a database and re-build the database from the script. @features_1446_h2 Cache Settings @features_1447_p The database keeps most frequently used data and index pages in the main memory. The amount of memory used for caching can be changed using the setting CACHE_SIZE. This setting can be set in the database connection URL (jdbc:h2:~/test;CACHE_SIZE=131072), or it can be changed at runtime using SET CACHE_SIZE size. @features_1448_p This database supports two cache page replacement algorithms: LRU (the default) and 2Q. For LRU, the pages that were least frequently used are removed from the cache if it becomes full. The 2Q algorithm is a bit more complicated, basically two queues are used. The 2Q algorithm is more resistant to table scans, however the overhead is a bit higher compared to the LRU. To use the cache algorithm 2Q, use a database URL of the form jdbc:h2:~/test;CACHE_TYPE=TQ. The cache algorithm can not be changed once the database is open. @features_1449_p To get information about page reads and writes, and the current caching algorithm in use, call SELECT * FROM INFORMATION_SCHEMA.SETTINGS. The number of pages read / written is listed for the data and index file. @frame_1000_p H2 (for 'Hypersonic 2') is free a Java SQL DBMS. Clustering, embedded and server mode, transactions, referential integrity, views, subqueries, triggers, encryption, and disk based or in-memory operation are supported. A browser based console application is included. If you see this page your browser does not support frames. Please click here to view the <a href="search.html">index</a> . @history_1000_h1 History and Roadmap @history_1001_a History of this Database Engine @history_1002_a Why Java @history_1003_a Change Log @history_1004_a Roadmap @history_1005_a Supporters @history_1006_h2 History of this Database Engine @history_1007_p The development of H2 was started in May 2004, but it was first published on December 14th 2005. The author of H2, Thomas Mueller, is also the original developer of Hypersonic SQL. In 2001, he joined PointBase Inc. where he created PointBase Micro. At that point, he had to discontinue Hypersonic SQL, but then the HSQLDB Group was formed to continued to work on the Hypersonic SQL codebase. The name H2 stands for Hypersonic 2; however H2 does not share any code with Hypersonic SQL or HSQLDB. H2 is built from scratch. @history_1008_h2 Why Java @history_1009_p A few reasons using a Java database are: @history_1010_li Very simple to integrate in Java applications @history_1011_li Support for many different platforms @history_1012_li More secure than native applications (no buffer overflows) @history_1013_li User defined functions (or triggers) run very fast @history_1014_li Unicode support @history_1015_p Some people think that Java is still too slow for low level operations, but this is not the case (not any more). In general, the code can be written a lot faster than using C or C++. Like that, it is possible to concentrate on improving the algorithms (that make the application faster) rather than porting the code and dealing with low level stuff (such as memory management or dealing with threads). Garbage collection is now probably faster than manual memory management. @history_1016_p A lot of features are already built in (for example Unicode, network libraries). It is very easy to write secure code because buffer overflows can not occur. Some features such as the reflection mechanism can be used for randomized testing. @history_1017_p Java is also future proof: A lot of companies support Java, and it is now open source. @history_1018_p This software does not rely on many Java libraries or other software, to increase the portability and ease of use, and for performance reasons. For example, the encryption algorithms and many library functions are implemented in the database instead of using the existing libraries. Libraries that are not available in open source Java implementations (such as Swing) are not used or only used for specific features. @history_1019_h2 Change Log @history_1020_p The up-to-date change log is available here: <a href="http://www.h2database.com/html/changelog.html">http://www.h2database.com/html/changelog.html</a> @history_1021_h2 Roadmap @history_1022_p The current roadmap is available here: <a href="http://www.h2database.com/html/roadmap.html">http://www.h2database.com/html/roadmap.html</a> @history_1023_h2 Supporters @history_1024_p Many thanks for those who helped by finding and reporting bugs, gave valuable feedback, spread the word and have translated this project. Also many thanks to the donors who contributed via PayPal: @history_1025_li Florent Ramiere, France @history_1026_li Pete Haidinyak, USA @history_1027_li Jun Iyama, Japan @history_1028_li Antonio Casqueiro, Portugal @history_1029_li lumber-mill.co.jp, Japan @history_1030_li Oliver Computing LLC, USA @history_1031_li Harpal Grover Consulting Inc., USA @history_1032_li Elisabetta Berlini, Italy @history_1033_li William Gilbert, USA @installation_1000_h1 Installation @installation_1001_a Requirements @installation_1002_a Supported Platforms @installation_1003_a Installing the Software @installation_1004_a Directory Structure @installation_1005_h2 Requirements @installation_1006_p To run the database, the following minimum software stack is known to work: @installation_1007_li Windows XP, MacOS, or Linux @installation_1008_li Recommended Windows file system: NTFS (FAT32 supports files up to 4 GB) @installation_1009_li Sun JDK 1.4 or newer @installation_1010_li Mozilla Firefox 1.5 or newer @installation_1011_h2 Supported Platforms @installation_1012_p As this database is written in Java, it can be run on many different platforms. It is tested with Java 1.4, 1.5, and 1.6 but can also be compiled to native code using GCJ. The source code does not use features of Java 1.5. Currently, the database is developed and tested on Windows XP using the Sun JDK 1.4, but it also works in many other operating systems and using other Java runtime environments. @installation_1013_h2 Installing the Software @installation_1014_p To install the software, run the installer or unzip it to a directory of your choice. @installation_1015_h2 Directory Structure @installation_1016_p After installing, you should get the following directory structure: @installation_1017_th Directory @installation_1018_th Contents @installation_1019_td bin @installation_1020_td JAR and batch files @installation_1021_td docs @installation_1022_td Documentation @installation_1023_td docs/html @installation_1024_td HTML pages @installation_1025_td docs/javadoc @installation_1026_td Javadoc files @installation_1027_td service @installation_1028_td Tools to run the database as a Windows Service @installation_1029_td src @installation_1030_td Source files @license_1000_h1 License @license_1001_h2 Summary and License FAQ @license_1002_p This license is a modified version of the MPL 1.1 available at <a href="http://www.mozilla.org/MPL">www.mozilla.org/MPL</a> , the changes are @license_1003_em underlined</em> . There is a License FAQ section at the Mozilla web site, most of that is applicable to the H2 License as well. @license_1004_li You can use H2 for free. You can integrate it into your application (including commercial applications), and you can distribute it. @license_1005_li Files containing only your code are not covered by this license (it is 'commercial friendly'). @license_1006_li Modifications to the H2 source code must be published. @license_1007_li You don't need to provide the source code of H2 if you did not modify anything. @license_1008_p However, nobody is allowed to rename H2, modify it a little, and sell it as a database engine without telling the customers it is in fact H2. This happened to HSQLDB, when a company called 'bungisoft' copied HSQLDB, renamed it to 'RedBase', and tried to sell it, hiding the fact that it was, in fact, just HSQLDB. At this time, it seems 'bungisoft' does not exist any more, but you can use the Wayback Machine of http://www.archive.org and look for old web pages of http://www.bungisoft.com. @license_1009_p About porting the source code to another language (for example C# or C++): Converted source code (even if done manually) stays under the same copyright and license as the original code. The copyright of the ported source code does not (automatically) go to the person who ported the code. @license_1010_h2 H2 License, Version 1.0 @license_1011_h3 1. Definitions @license_1012_b 1.0.1. "Commercial Use" @license_1013_p means distribution or otherwise making the Covered Code available to a third party. @license_1014_b 1.1. "Contributor" @license_1015_p means each entity that creates or contributes to the creation of Modifications. @license_1016_b 1.2. "Contributor Version" @license_1017_p means the combination of the Original Code, prior Modifications used by a Contributor, and the Modifications made by that particular Contributor. @license_1018_b 1.3. "Covered Code" @license_1019_p means the Original Code or Modifications or the combination of the Original Code and Modifications, in each case including portions thereof. @license_1020_b 1.4. "Electronic Distribution Mechanism" @license_1021_p means a mechanism generally accepted in the software development community for the electronic transfer of data. @license_1022_b 1.5. "Executable" @license_1023_p means Covered Code in any form other than Source Code. @license_1024_b 1.6. "Initial Developer" @license_1025_p means the individual or entity identified as the Initial Developer in the Source Code notice required by <a href="#exhibit-a">Exhibit A</a> . @license_1026_b 1.7. "Larger Work" @license_1027_p means a work which combines Covered Code or portions thereof with code not governed by the terms of this License. @license_1028_b 1.8. "License" @license_1029_p means this document. @license_1030_b 1.8.1. "Licensable" @license_1031_p means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. @license_1032_b 1.9. "Modifications" @license_1033_p means any addition to or deletion from the substance or structure of either the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: @license_1034_p 1.9.a. Any addition to or deletion from the contents of a file containing Original Code or previous Modifications. @license_1035_p 1.9.b. Any new file that contains any part of the Original Code or previous Modifications. @license_1036_b 1.10. "Original Code" @license_1037_p means Source Code of computer software code which is described in the Source Code notice required by <a href="#exhibit-a">Exhibit A</a> as Original Code, and which, at the time of its release under this License is not already Covered Code governed by this License. @license_1038_b 1.10.1. "Patent Claims" @license_1039_p means any patent claim(s), now owned or hereafter acquired, including without limitation, method, process, and apparatus claims, in any patent Licensable by grantor. @license_1040_b 1.11. "Source Code" @license_1041_p means the preferred form of the Covered Code for making modifications to it, including all modules it contains, plus any associated interface definition files, scripts used to control compilation and installation of an Executable, or source code differential comparisons against either the Original Code or another well known, available Covered Code of the Contributor's choice. The Source Code can be in a compressed or archival form, provided the appropriate decompression or de-archiving software is widely available for no charge. @license_1042_b 1.12. "You" (or "Your") @license_1043_p means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under <a href="#section-6.1">Section 6.1.</a> For legal entities, "You" includes any entity which controls, is controlled by, or is under common control with You. For purposes of this definition, "control" means (a) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (b) ownership of more than fifty percent (50%) of the outstanding shares or beneficial ownership of such entity. @license_1044_h3 2. Source Code License @license_1045_h4 2.1. The Initial Developer Grant @license_1046_p The Initial Developer hereby grants You a world-wide, royalty-free, non-exclusive license, subject to third party intellectual property claims: @license_1047_p 2.1.a. under intellectual property rights (other than patent or trademark) Licensable by Initial Developer to use, reproduce, modify, display, perform, sublicense and distribute the Original Code (or portions thereof) with or without Modifications, and/or as part of a Larger Work; and @license_1048_p 2.1.b. under Patents Claims infringed by the making, using or selling of Original Code, to make, have made, use, practice, sell, and offer for sale, and/or otherwise dispose of the Original Code (or portions thereof). @license_1049_p 2.1.c. the licenses granted in this Section 2.1 ( <a href="#section-2.1-a">a</a> ) and ( <a href="#section-2.1-b">b</a> ) are effective on the date Initial Developer first distributes Original Code under the terms of this License. @license_1050_p 2.1.d. Notwithstanding Section 2.1 ( <a href="#section-2.1-b">b</a> ) above, no patent license is granted: 1) for code that You delete from the Original Code; 2) separate from the Original Code; or 3) for infringements caused by: i) the modification of the Original Code or ii) the combination of the Original Code with other software or devices. @license_1051_h4 2.2. Contributor Grant @license_1052_p Subject to third party intellectual property claims, each Contributor hereby grants You a world-wide, royalty-free, non-exclusive license @license_1053_p 2.2.a. under intellectual property rights (other than patent or trademark) Licensable by Contributor, to use, reproduce, modify, display, perform, sublicense and distribute the Modifications created by such Contributor (or portions thereof) either on an unmodified basis, with other Modifications, as Covered Code and/or as part of a Larger Work; and @license_1054_p 2.2.b. under Patent Claims infringed by the making, using, or selling of Modifications made by that Contributor either alone and/or in combination with its Contributor Version (or portions of such combination), to make, use, sell, offer for sale, have made, and/or otherwise dispose of: 1) Modifications made by that Contributor (or portions thereof); and 2) the combination of Modifications made by that Contributor with its Contributor Version (or portions of such combination). @license_1055_p 2.2.c. the licenses granted in Sections 2.2 ( <a href="#section-2.2-a">a</a> ) and 2.2 ( <a href="#section-2.2-b">b</a> ) are effective on the date Contributor first makes Commercial Use of the Covered Code. @license_1056_p 2.2.c. Notwithstanding Section 2.2 ( <a href="#section-2.2-b">b</a> ) above, no patent license is granted: 1) for any code that Contributor has deleted from the Contributor Version; 2) separate from the Contributor Version; 3) for infringements caused by: i) third party modifications of Contributor Version or ii) the combination of Modifications made by that Contributor with other software (except as part of the Contributor Version) or other devices; or 4) under Patent Claims infringed by Covered Code in the absence of Modifications made by that Contributor. @license_1057_h3 3. Distribution Obligations @license_1058_h4 3.1. Application of License @license_1059_p The Modifications which You create or to which You contribute are governed by the terms of this License, including without limitation Section <a href="#section-2.2">2.2</a> . The Source Code version of Covered Code may be distributed only under the terms of this License or a future version of this License released under Section <a href="#section-6.1">6.1</a> , and You must include a copy of this License with every copy of the Source Code You distribute. You may not offer or impose any terms on any Source Code version that alters or restricts the applicable version of this License or the recipients' rights hereunder. However, You may include an additional document offering the additional rights described in Section <a href="#section-3.5">3.5</a> . @license_1060_h4 3.2. Availability of Source Code @license_1061_p Any Modification which You create or to which You contribute must be made available in Source Code form under the terms of this License either on the same media as an Executable version or via an accepted Electronic Distribution Mechanism to anyone to whom you made an Executable version available; and if made available via Electronic Distribution Mechanism, must remain available for at least twelve (12) months after the date it initially became available, or at least six (6) months after a subsequent version of that particular Modification has been made available to such recipients. You are responsible for ensuring that the Source Code version remains available even if the Electronic Distribution Mechanism is maintained by a third party. @license_1062_h4 3.3. Description of Modifications @license_1063_p You must cause all Covered Code to which You contribute to contain a file documenting the changes You made to create that Covered Code and the date of any change. You must include a prominent statement that the Modification is derived, directly or indirectly, from Original Code provided by the Initial Developer and including the name of the Initial Developer in (a) the Source Code, and (b) in any notice in an Executable version or related documentation in which You describe the origin or ownership of the Covered Code. @license_1064_h4 3.4. Intellectual Property Matters @license_1065_b 3.4.a. Third Party Claims: @license_1066_p If Contributor has knowledge that a license under a third party's intellectual property rights is required to exercise the rights granted by such Contributor under Sections <a href="#section-2.1">2.1</a> or <a href="#section-2.2">2.2</a> , Contributor must include a text file with the Source Code distribution titled "LEGAL" which describes the claim and the party making the claim in sufficient detail that a recipient will know whom to contact. If Contributor obtains such knowledge after the Modification is made available as described in Section <a href="#section-3.2">3.2</a> , Contributor shall promptly modify the LEGAL file in all copies Contributor makes available thereafter and shall take other steps (such as notifying appropriate mailing lists or newsgroups) reasonably calculated to inform those who received the Covered Code that new knowledge has been obtained. @license_1067_b 3.4.b. Contributor APIs: @license_1068_p If Contributor's Modifications include an application programming interface and Contributor has knowledge of patent licenses which are reasonably necessary to implement that API, Contributor must also include this information in the legal file. @license_1069_b 3.4.c. Representations: @license_1070_p Contributor represents that, except as disclosed pursuant to Section 3.4 ( <a href="#section-3.4-a">a</a> ) above, Contributor believes that Contributor's Modifications are Contributor's original creation(s) and/or Contributor has sufficient rights to grant the rights conveyed by this License. @license_1071_h4 3.5. Required Notices @license_1072_p You must duplicate the notice in <a href="#exhibit-a">Exhibit A</a> in each file of the Source Code. If it is not possible to put such notice in a particular Source Code file due to its structure, then You must include such notice in a location (such as a relevant directory) where a user would be likely to look for such a notice. If You created one or more Modification(s) You may add your name as a Contributor to the notice described in <a href="#exhibit-a">Exhibit A</a> . You must also duplicate this License in any documentation for the Source Code where You describe recipients' rights or ownership rights relating to Covered Code. You may choose to offer, and to charge a fee for, warranty, support, indemnity or liability obligations to one or more recipients of Covered Code. However, You may do so only on Your own behalf, and not on behalf of the Initial Developer or any Contributor. You must make it absolutely clear than any such warranty, support, indemnity or liability obligation is offered by You alone, and You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of warranty, support, indemnity or liability terms You offer. @license_1073_h4 3.6. Distribution of Executable Versions @license_1074_p You may distribute Covered Code in Executable form only if the requirements of Sections <a href="#section-3.1">3.1</a> , <a href="#section-3.2">3.2</a> , <a href="#section-3.3">3.3</a> , <a href="#section-3.4">3.4</a> and <a href="#section-3.5">3.5</a> have been met for that Covered Code, and if You include a notice stating that the Source Code version of the Covered Code is available under the terms of this License, including a description of how and where You have fulfilled the obligations of Section <a href="#section-3.2">3.2</a> . The notice must be conspicuously included in any notice in an Executable version, related documentation or collateral in which You describe recipients' rights relating to the Covered Code. You may distribute the Executable version of Covered Code or ownership rights under a license of Your choice, which may contain terms different from this License, provided that You are in compliance with the terms of this License and that the license for the Executable version does not attempt to limit or alter the recipient's rights in the Source Code version from the rights set forth in this License. If You distribute the Executable version under a different license You must make it absolutely clear that any terms which differ from this License are offered by You alone, not by the Initial Developer or any Contributor. You hereby agree to indemnify the Initial Developer and every Contributor for any liability incurred by the Initial Developer or such Contributor as a result of any such terms You offer. @license_1075_h4 3.7. Larger Works @license_1076_p You may create a Larger Work by combining Covered Code with other code not governed by the terms of this License and distribute the Larger Work as a single product. In such a case, You must make sure the requirements of this License are fulfilled for the Covered Code. @license_1077_h3 4. Inability to Comply Due to Statute or Regulation. @license_1078_p If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Covered Code due to statute, judicial order, or regulation then You must: (a) comply with the terms of this License to the maximum extent possible; and (b) describe the limitations and the code they affect. Such description must be included in the <b>legal</b> file described in Section <a href="#section-3.4">3.4</a> and must be included with all distributions of the Source Code. Except to the extent prohibited by statute or regulation, such description must be sufficiently detailed for a recipient of ordinary skill to be able to understand it. @license_1079_h3 5. Application of this License. @license_1080_p This License applies to code to which the Initial Developer has attached the notice in <a href="#exhibit-a">Exhibit A</a> and to related Covered Code. @license_1081_h3 6. Versions of the License. @license_1082_h4 6.1. New Versions @license_1083_p The @license_1084_em H2 Group</em> may publish revised and/or new versions of the License from time to time. Each version will be given a distinguishing version number. @license_1085_h4 6.2. Effect of New Versions @license_1086_p Once Covered Code has been published under a particular version of the License, You may always continue to use it under the terms of that version. You may also choose to use such Covered Code under the terms of any subsequent version of the License published by the @license_1087_em H2 Group</em> . No one other than the @license_1088_em H2 Group</em> has the right to modify the terms applicable to Covered Code created under this License. @license_1089_h4 6.3. Derivative Works @license_1090_p If You create or use a modified version of this License (which you may only do in order to apply it to code which is not already Covered Code governed by this License), You must (a) rename Your license so that the phrases @license_1091_em "H2 Group", "H2"</em> or any confusingly similar phrase do not appear in your license (except to note that your license differs from this License) and (b) otherwise make it clear that Your version of the license contains terms which differ from the @license_1092_em H2 License</em> . (Filling in the name of the Initial Developer, Original Code or Contributor in the notice described in <a href="#exhibit-a">Exhibit A</a> shall not of themselves be deemed to be modifications of this License.) @license_1093_h3 7. Disclaimer of Warranty @license_1094_p Covered code is provided under this license on an "as is" basis, without warranty of any kind, either expressed or implied, including, without limitation, warranties that the covered code is free of defects, merchantable, fit for a particular purpose or non-infringing. The entire risk as to the quality and performance of the covered code is with you. Should any covered code prove defective in any respect, you (not the initial developer or any other contributor) assume the cost of any necessary servicing, repair or correction. This disclaimer of warranty constitutes an essential part of this license. No use of any covered code is authorized hereunder except under this disclaimer. @license_1095_h3 8. Termination @license_1096_p 8.1. This License and the rights granted hereunder will terminate automatically if You fail to comply with terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses to the Covered Code which are properly granted shall survive any termination of this License. Provisions which, by their nature, must remain in effect beyond the termination of this License shall survive. @license_1097_p 8.2. If You initiate litigation by asserting a patent infringement claim (excluding declaratory judgment actions) against Initial Developer or a Contributor (the Initial Developer or Contributor against whom You file such action is referred to as "Participant") alleging that: @license_1098_p 8.2.a. such Participant's Contributor Version directly or indirectly infringes any patent, then any and all rights granted by such Participant to You under Sections <a href="#section-2.1">2.1</a> and/or <a href="#section-2.2">2.2</a> of this License shall, upon 60 days notice from Participant terminate prospectively, unless if within 60 days after receipt of notice You either: (i) agree in writing to pay Participant a mutually agreeable reasonable royalty for Your past and future use of Modifications made by such Participant, or (ii) withdraw Your litigation claim with respect to the Contributor Version against such Participant. If within 60 days of notice, a reasonable royalty and payment arrangement are not mutually agreed upon in writing by the parties or the litigation claim is not withdrawn, the rights granted by Participant to You under Sections <a href="#section-2.1">2.1</a> and/or <a href="#section-2.2">2.2</a> automatically terminate at the expiration of the 60 day notice period specified above. @license_1099_p 8.2.b. any software, hardware, or device, other than such Participant's Contributor Version, directly or indirectly infringes any patent, then any rights granted to You by such Participant under Sections 2.1( <a href="#section-2.1-b">b</a> ) and 2.2( <a href="#section-2.2-b">b</a> ) are revoked effective as of the date You first made, used, sold, distributed, or had made, Modifications made by that Participant. @license_1100_p 8.3. If You assert a patent infringement claim against Participant alleging that such Participant's Contributor Version directly or indirectly infringes any patent where such claim is resolved (such as by license or settlement) prior to the initiation of patent infringement litigation, then the reasonable value of the licenses granted by such Participant under Sections <a href="#section-2.1">2.1</a> or <a href="#section-2.2">2.2</a> shall be taken into account in determining the amount or value of any payment or license. @license_1101_p 8.4. In the event of termination under Sections <a href="#section-8.1">8.1</a> or <a href="#section-8.2">8.2</a> above, all end user license agreements (excluding distributors and resellers) which have been validly granted by You or any distributor hereunder prior to termination shall survive termination. @license_1102_h3 9. Limitation of Liability @license_1103_p Under no circumstances and under no legal theory, whether tort (including negligence), contract, or otherwise, shall you, the initial developer, any other contributor, or any distributor of covered code, or any supplier of any of such parties, be liable to any person for any indirect, special, incidental, or consequential damages of any character including, without limitation, damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses, even if such party shall have been informed of the possibility of such damages. This limitation of liability shall not apply to liability for death or personal injury resulting from such party's negligence to the extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or limitation of incidental or consequential damages, so this exclusion and limitation may not apply to you. @license_1104_h3 10. United States Government End Users @license_1105_p The Covered Code is a "commercial item", as that term is defined in 48 C.F.R. 2.101 (October 1995), consisting of "commercial computer software" and "commercial computer software documentation", as such terms are used in 48 C.F.R. 12.212 (September 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Code with only those rights set forth herein. @license_1106_h3 11. Miscellaneous @license_1107_p This License represents the complete agreement concerning subject matter hereof. If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable. This License shall be governed by @license_1108_em Swiss</em> law provisions (except to the extent applicable law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to disputes in which at least one party is a citizen of, or an entity chartered or registered to do business in @license_1109_em Switzerland</em> , any litigation relating to this License shall be subject to the jurisdiction of @license_1110_em Switzerland</em> , with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys' fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation which provides that the language of a contract shall be construed against the drafter shall not apply to this License. @license_1111_h3 12. Responsibility for Claims @license_1112_p As between Initial Developer and the Contributors, each party is responsible for claims and damages arising, directly or indirectly, out of its utilization of rights under this License and You agree to work with Initial Developer and Contributors to distribute such responsibility on an equitable basis. Nothing herein is intended or shall be deemed to constitute any admission of liability. @license_1113_h3 13. Multiple-Licensed Code @license_1114_p Initial Developer may designate portions of the Covered Code as "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer permits you to utilize portions of the Covered Code under Your choice of this or the alternative licenses, if any, specified by the Initial Developer in the file described in <a href="#exhibit-a">Exhibit A</a> . @license_1115_h3 Exhibit A @mainWeb_1000_h1 H2 Database Engine @mainWeb_1001_p Welcome to H2, the free SQL database. The main feature of H2 are: @mainWeb_1002_li Very fast, free for everybody, source code is included @mainWeb_1003_li Written Java; can be compiled with GCJ (Linux) @mainWeb_1004_li Embedded, Server and Cluster modes @mainWeb_1005_li JDBC and (partial) ODBC API; Web Client application @mainWeb_1006_h3 Download @mainWeb_1007_td Version 1.0.67 (2008-02-22): @mainWeb_1008_a Windows Installer (2.9 MB) @mainWeb_1009_a All platforms (zip, 4.1 MB) @mainWeb_1010_a All Downloads @mainWeb_1011_td @mainWeb_1012_h3 Support @mainWeb_1013_a English Google Group @mainWeb_1014_a Japanese Google Group @mainWeb_1015_p Or send an e-mail to: @mainWeb_1016_td @mainWeb_1017_h3 Performance @mainWeb_1018_td Operations/second (higher is better) - <a href="performance.html">More information about this test</a> @mainWeb_1019_td @mainWeb_1020_h3 News @mainWeb_1021_b Newsfeeds: @mainWeb_1022_p Two are available: <a href="http://www.h2database.com/html/newsfeed-atom.xml" target="_blank">Full text (Atom)</a> and <a href="http://www.h2database.com/html/newsfeed-rss.xml" target="_blank">Header only (RSS)</a> . @mainWeb_1023_b Email Newsletter: @mainWeb_1024_p Subscribe to <a href="http://groups.google.com/group/h2database-news/subscribe">H2 Database News (Google account required)</a> to get informed about new releases. Your email address is only used in this context. @mainWeb_1025_td @mainWeb_1026_h3 Contribute @mainWeb_1027_p You can contribute to the development of H2 by sending feedback and bug reports, or translate the H2 Console application (files h2/src/main/org/h2/server/web/res/_text_*.properties). Or click on the PayPal button below to donate money. You will be listed as a supporter: @mainWeb_1028_td @mainWeb_1029_h3 Feedback @mainWeb_1030_td You may also send questions, feature requests, or feedback of any kind here: @mainWeb_1031_p Email (optional): @mainWeb_1032_form Message: @main_1000_h1 H2 Database Engine @main_1001_p Welcome to H2, the free SQL database engine. @main_1002_a Quickstart @main_1003_p Click here to get a fast overview. @main_1004_a Tutorial @main_1005_p Go through the samples. @main_1006_a Features @main_1007_p See what this database can do and how to use these features. @performance_1000_h1 Performance @performance_1001_a Performance Comparison @performance_1002_a PolePosition Benchmark @performance_1003_a Application Profiling @performance_1004_a Performance Tuning @performance_1005_h2 Performance Comparison @performance_1006_p In most cases H2 is a lot faster than all other (open source and not open source) database engines. Please note this is mostly a single connection benchmark run on one computer. @performance_1007_h3 Embedded @performance_1008_th Test Case @performance_1009_th Unit @performance_1010_th H2 @performance_1011_th HSQLDB @performance_1012_th Derby @performance_1013_td Simple: Init @performance_1014_td ms @performance_1015_td 719 @performance_1016_td 1344 @performance_1017_td 2906 @performance_1018_td Simple: Query (random) @performance_1019_td ms @performance_1020_td 328 @performance_1021_td 328 @performance_1022_td 1578 @performance_1023_td Simple: Query (sequential) @performance_1024_td ms @performance_1025_td 250 @performance_1026_td 250 @performance_1027_td 1484 @performance_1028_td Simple: Update (random) @performance_1029_td ms @performance_1030_td 688 @performance_1031_td 1828 @performance_1032_td 14922 @performance_1033_td Simple: Delete (sequential) @performance_1034_td ms @performance_1035_td 203 @performance_1036_td 265 @performance_1037_td 10235 @performance_1038_td Simple: Memory Usage @performance_1039_td MB @performance_1040_td 6 @performance_1041_td 9 @performance_1042_td 11 @performance_1043_td BenchA: Init @performance_1044_td ms @performance_1045_td 422 @performance_1046_td 672 @performance_1047_td 4328 @performance_1048_td BenchA: Transactions @performance_1049_td ms @performance_1050_td 6969 @performance_1051_td 3531 @performance_1052_td 16719 @performance_1053_td BenchA: Memory Usage @performance_1054_td MB @performance_1055_td 10 @performance_1056_td 10 @performance_1057_td 9 @performance_1058_td BenchB: Init @performance_1059_td ms @performance_1060_td 1703 @performance_1061_td 3937 @performance_1062_td 13844 @performance_1063_td BenchB: Transactions @performance_1064_td ms @performance_1065_td 2360 @performance_1066_td 1328 @performance_1067_td 5797 @performance_1068_td BenchB: Memory Usage @performance_1069_td MB @performance_1070_td 8 @performance_1071_td 9 @performance_1072_td 8 @performance_1073_td BenchC: Init @performance_1074_td ms @performance_1075_td 718 @performance_1076_td 468 @performance_1077_td 5328 @performance_1078_td BenchC: Transactions @performance_1079_td ms @performance_1080_td 2688 @performance_1081_td 60828 @performance_1082_td 7109 @performance_1083_td BenchC: Memory Usage @performance_1084_td MB @performance_1085_td 10 @performance_1086_td 14 @performance_1087_td 9 @performance_1088_td Executed Statements @performance_1089_td # @performance_1090_td 594255 @performance_1091_td 594255 @performance_1092_td 594255 @performance_1093_td Total Time @performance_1094_td ms @performance_1095_td 17048 @performance_1096_td 74779 @performance_1097_td 84250 @performance_1098_td Statement per Second @performance_1099_td # @performance_1100_td 34857 @performance_1101_td 7946 @performance_1102_td 7053 @performance_1103_h3 Client-Server @performance_1104_th Test Case @performance_1105_th Unit @performance_1106_th H2 @performance_1107_th HSQLDB @performance_1108_th Derby @performance_1109_th PostgreSQL @performance_1110_th MySQL @performance_1111_td Simple: Init @performance_1112_td ms @performance_1113_td 2516 @performance_1114_td 3109 @performance_1115_td 7078 @performance_1116_td 4625 @performance_1117_td 2859 @performance_1118_td Simple: Query (random) @performance_1119_td ms @performance_1120_td 2890 @performance_1121_td 2547 @performance_1122_td 8843 @performance_1123_td 7703 @performance_1124_td 3203 @performance_1125_td Simple: Query (sequential) @performance_1126_td ms @performance_1127_td 2953 @performance_1128_td 2407 @performance_1129_td 8516 @performance_1130_td 6953 @performance_1131_td 3516 @performance_1132_td Simple: Update (random) @performance_1133_td ms @performance_1134_td 3141 @performance_1135_td 3671 @performance_1136_td 18125 @performance_1137_td 7797 @performance_1138_td 4687 @performance_1139_td Simple: Delete (sequential) @performance_1140_td ms @performance_1141_td 1000 @performance_1142_td 1219 @performance_1143_td 12891 @performance_1144_td 3547 @performance_1145_td 1938 @performance_1146_td Simple: Memory Usage @performance_1147_td MB @performance_1148_td 6 @performance_1149_td 10 @performance_1150_td 14 @performance_1151_td 0 @performance_1152_td 1 @performance_1153_td BenchA: Init @performance_1154_td ms @performance_1155_td 2266 @performance_1156_td 2484 @performance_1157_td 7797 @performance_1158_td 4234 @performance_1159_td 4703 @performance_1160_td BenchA: Transactions @performance_1161_td ms @performance_1162_td 11078 @performance_1163_td 8875 @performance_1164_td 26328 @performance_1165_td 18641 @performance_1166_td 11187 @performance_1167_td BenchA: Memory Usage @performance_1168_td MB @performance_1169_td 8 @performance_1170_td 13 @performance_1171_td 10 @performance_1172_td 0 @performance_1173_td 1 @performance_1174_td BenchB: Init @performance_1175_td ms @performance_1176_td 8422 @performance_1177_td 12531 @performance_1178_td 27734 @performance_1179_td 18609 @performance_1180_td 12312 @performance_1181_td BenchB: Transactions @performance_1182_td ms @performance_1183_td 4125 @performance_1184_td 3344 @performance_1185_td 7875 @performance_1186_td 7922 @performance_1187_td 3266 @performance_1188_td BenchB: Memory Usage @performance_1189_td MB @performance_1190_td 9 @performance_1191_td 10 @performance_1192_td 8 @performance_1193_td 0 @performance_1194_td 1 @performance_1195_td BenchC: Init @performance_1196_td ms @performance_1197_td 1781 @performance_1198_td 1609 @performance_1199_td 6797 @performance_1200_td 2453 @performance_1201_td 3328 @performance_1202_td BenchC: Transactions @performance_1203_td ms @performance_1204_td 8453 @performance_1205_td 62469 @performance_1206_td 19859 @performance_1207_td 11516 @performance_1208_td 7062 @performance_1209_td BenchC: Memory Usage @performance_1210_td MB @performance_1211_td 10 @performance_1212_td 15 @performance_1213_td 9 @performance_1214_td 0 @performance_1215_td 1 @performance_1216_td Executed Statements @performance_1217_td # @performance_1218_td 594255 @performance_1219_td 594255 @performance_1220_td 594255 @performance_1221_td 594255 @performance_1222_td 594255 @performance_1223_td Total Time @performance_1224_td ms @performance_1225_td 48625 @performance_1226_td 104265 @performance_1227_td 151843 @performance_1228_td 94000 @performance_1229_td 58061 @performance_1230_td Statement per Second @performance_1231_td # @performance_1232_td 12221 @performance_1233_td 5699 @performance_1234_td 3913 @performance_1235_td 6321 @performance_1236_td 10235 @performance_1237_h3 Benchmark Results and Comments @performance_1238_h4 H2 @performance_1239_p Version 1.0.67 (2008-02-22) was used for the test. For simpler operations, the performance of H2 is about the same as for HSQLDB. For more complex queries, the query optimizer is very important. However H2 is not very fast in every case, certain kind of queries may still be slow. One situation where is H2 is slow is large result sets, because they are buffered to disk if more than a certain number of records are returned. The advantage of buffering is, there is no limit on the result set size. The open/close time is almost fixed, because of the file locking protocol: The engine waits 20 ms after opening a database to ensure the database files are not opened by another process. @performance_1240_h4 HSQLDB @performance_1241_p Version 1.8.0.8 was used for the test. Cached tables are used in this test (hsqldb.default_table_type=cached), and the write delay is 1 second (SET WRITE_DELAY 1). HSQLDB is fast when using simple operations. HSQLDB is very slow in the last test (BenchC: Transactions), probably because is has a bad query optimizer. One query where HSQLDB is slow is a two-table join: @performance_1242_p The PolePosition benchmark also shows that the query optimizer does not do a very good job for some queries. A disadvantage in HSQLDB is the slow startup / shutdown time (currently not listed) when using bigger databases. The reason is, a backup of the database is created whenever the database is opened or closed. @performance_1243_h4 Derby @performance_1244_p Version 10.3.1.4 was used for the test. Derby is clearly the slowest embedded database in this test. This seems to be a structural problem, because all operations are really slow. It will not be easy for the developers of Derby to improve the performance to a reasonable level. A few problems have been identified: Leaving autocommit on is a problem for Derby. If it is switched off during the whole test, the results are about 20% better for Derby. @performance_1245_h4 PostgreSQL @performance_1246_p Version 8.1.4 was used for the test. The following options where changed in postgresql.conf: fsync = off, commit_delay = 1000. PostgreSQL is run in server mode. It looks like the base performance is slower than MySQL, the reason could be the network layer. The memory usage number is incorrect, because only the memory usage of the JDBC driver is measured. @performance_1247_h4 MySQL @performance_1248_p Version 5.0.22 was used for the test. MySQL was run with the InnoDB backend. The setting innodb_flush_log_at_trx_commit (found in the my.ini file) was set to 0. Otherwise (and by default), MySQL is really slow (around 140 statements per second in this test) because it tries to flush the data to disk for each commit. For small transactions (when autocommit is on) this is really slow. But many use cases use small or relatively small transactions. Too bad this setting is not listed in the configuration wizard, and it always overwritten when using the wizard. You need to change this setting manually in the file my.ini, and then restart the service. The memory usage number is incorrect, because only the memory usage of the JDBC driver is measured. @performance_1249_h4 Firebird @performance_1250_p Firebird 1.5 (default installation) was tested, but the results are not published currently. It is possible to run the performance test with the Firebird database, and any information on how to configure Firebird for higher performance are welcome. @performance_1251_h4 Why Oracle / MS SQL Server / DB2 are Not Listed @performance_1252_p The license of these databases does not allow to publish benchmark results. This doesn't mean that they are fast. They are in fact quite slow, and need a lot of memory. But you will need to test this yourself. SQLite was not tested because the JDBC driver doesn't support transactions. @performance_1253_h3 About this Benchmark @performance_1254_h4 Number of Connections @performance_1255_p This is mostly a single-connection benchmark. BenchB uses multiple connections, the other tests one connection. @performance_1256_h4 Real-World Tests @performance_1257_p Good benchmarks emulate real-world use cases. This benchmark includes 3 test cases: A simple test case with one table and many small updates / deletes. BenchA is similar to the TPC-A test, but single connection / single threaded (see also: www.tpc.org). BenchB is similar to the TPC-B test, using multiple connections (one thread per connection). BenchC is similar to the TPC-C test, but single connection / single threaded. @performance_1258_h4 Comparing Embedded with Server Databases @performance_1259_p This is mainly a benchmark for embedded databases (where the application runs in the same virtual machine than the database engine). However MySQL and PostgreSQL are not Java databases and cannot be embedded into a Java application. For the Java databases, both embedded and server modes are tested. @performance_1260_h4 Test Platform @performance_1261_p This test is run on Windows XP with the virus scanner switched off. The VM used is Sun JDK 1.5. @performance_1262_h4 Multiple Runs @performance_1263_p When a Java benchmark is run first, the code is not fully compiled and therefore runs slower than when running multiple times. A benchmark should always run the same test multiple times and ignore the first run(s). This benchmark runs three times, the last run counts. @performance_1264_h4 Memory Usage @performance_1265_p It is not enough to measure the time taken, the memory usage is important as well. Performance can be improved in databases by using a bigger in-memory cache, but there is only a limited amount of memory available on the system. HSQLDB tables are kept fully in memory by default, this benchmark uses 'disk based' tables for all databases. Unfortunately, it is not so easy to calculate the memory usage of PostgreSQL and MySQL, because they run in a different process than the test. This benchmark currently does not print memory usage of those databases. @performance_1266_h4 Delayed Operations @performance_1267_p Some databases delay some operations (for example flushing the buffers) until after the benchmark is run. This benchmark waits between each database tested, and each database runs in a different process (sequentially). @performance_1268_h4 Transaction Commit / Durability @performance_1269_p Durability means transaction committed to the database will not be lost. Some databases (for example MySQL) try to enforce this by default by calling fsync() to flush the buffers, but most hard drives don't actually flush all data. Calling fsync() slows down transaction commit a lot, but doesn't always make data durable. When comparing the results, it is important to think about the effect. Many database suggest to 'batch' operations when possible. This benchmark switches off autocommit when loading the data, and calls commit after each 1000 inserts. However many applications need 'short' transactions at runtime (a commit after each update). This benchmark commits after each update / delete in the simple benchmark, and after each business transaction in the other benchmarks. For databases that support delayed commits, a delay of one second is used. @performance_1270_h4 Using Prepared Statements @performance_1271_p Wherever possible, the test cases use prepared statements. @performance_1272_h4 Currently Not Tested: Startup Time @performance_1273_p The startup time of a database engine is important as well for embedded use. This time is not measured currently. Also, not tested is the time used to create a database and open an existing database. Here, one (wrapper) connection is opened at the start, and for each step a new connection is opened and then closed. That means the Open/Close time listed is for opening a connection if the database is already in use. @performance_1274_h2 PolePosition Benchmark @performance_1275_p The PolePosition is an open source benchmark. The algorithms are all quite simple. It was developed / sponsored by db4o. @performance_1276_th Test Case @performance_1277_th Unit @performance_1278_th H2 @performance_1279_th HSQLDB @performance_1280_th MySQL @performance_1281_td Melbourne write @performance_1282_td ms @performance_1283_td 369 @performance_1284_td 249 @performance_1285_td 2022 @performance_1286_td Melbourne read @performance_1287_td ms @performance_1288_td 47 @performance_1289_td 49 @performance_1290_td 93 @performance_1291_td Melbourne read_hot @performance_1292_td ms @performance_1293_td 24 @performance_1294_td 43 @performance_1295_td 95 @performance_1296_td Melbourne delete @performance_1297_td ms @performance_1298_td 147 @performance_1299_td 133 @performance_1300_td 176 @performance_1301_td Sepang write @performance_1302_td ms @performance_1303_td 965 @performance_1304_td 1201 @performance_1305_td 3213 @performance_1306_td Sepang read @performance_1307_td ms @performance_1308_td 765 @performance_1309_td 948 @performance_1310_td 3455 @performance_1311_td Sepang read_hot @performance_1312_td ms @performance_1313_td 789 @performance_1314_td 859 @performance_1315_td 3563 @performance_1316_td Sepang delete @performance_1317_td ms @performance_1318_td 1384 @performance_1319_td 1596 @performance_1320_td 6214 @performance_1321_td Bahrain write @performance_1322_td ms @performance_1323_td 1186 @performance_1324_td 1387 @performance_1325_td 6904 @performance_1326_td Bahrain query_indexed_string @performance_1327_td ms @performance_1328_td 336 @performance_1329_td 170 @performance_1330_td 693 @performance_1331_td Bahrain query_string @performance_1332_td ms @performance_1333_td 18064 @performance_1334_td 39703 @performance_1335_td 41243 @performance_1336_td Bahrain query_indexed_int @performance_1337_td ms @performance_1338_td 104 @performance_1339_td 134 @performance_1340_td 678 @performance_1341_td Bahrain update @performance_1342_td ms @performance_1343_td 191 @performance_1344_td 87 @performance_1345_td 159 @performance_1346_td Bahrain delete @performance_1347_td ms @performance_1348_td 1215 @performance_1349_td 729 @performance_1350_td 6812 @performance_1351_td Imola retrieve @performance_1352_td ms @performance_1353_td 198 @performance_1354_td 194 @performance_1355_td 4036 @performance_1356_td Barcelona write @performance_1357_td ms @performance_1358_td 413 @performance_1359_td 832 @performance_1360_td 3191 @performance_1361_td Barcelona read @performance_1362_td ms @performance_1363_td 119 @performance_1364_td 160 @performance_1365_td 1177 @performance_1366_td Barcelona query @performance_1367_td ms @performance_1368_td 20 @performance_1369_td 5169 @performance_1370_td 101 @performance_1371_td Barcelona delete @performance_1372_td ms @performance_1373_td 388 @performance_1374_td 319 @performance_1375_td 3287 @performance_1376_td Total @performance_1377_td ms @performance_1378_td 26724 @performance_1379_td 53962 @performance_1380_td 87112 @performance_1381_h2 Application Profiling @performance_1382_h3 Analyze First @performance_1383_p Before trying to optimize the performance, it is important to know where the time is actually spent. The same is true for memory problems. Premature or 'blind' optimization should be avoided, as it is not an efficient way to solve the problem. There are various ways to analyze the application. In some situations it is possible to compare two implementations and use System.currentTimeMillis() to find out which one is faster. But this does not work for complex applications with many modules, and for memory problems. A very good tool to measure both the memory and the CPU is the <a href="http://www.yourkit.com">YourKit Java Profiler</a> . This tool is also used to optimize the performance and memory footprint of this database engine. @performance_1384_h2 Database Performance Tuning @performance_1385_h3 Virus Scanners @performance_1386_p Some virus scanners scan files every time they are accessed. It is very important for performance that database files are not scanned for viruses. The database engine does never interprets the data stored in the files as programs, that means even if somebody would store a virus in a database file, this would be harmless (when the virus does not run, it cannot spread). Some virus scanners allow excluding file endings. Make sure files ending with .db are not scanned. @performance_1387_h3 Using the Trace Options @performance_1388_p If the main performance hot spots are in the database engine, in many cases the performance can be optimized by creating additional indexes, or changing the schema. Sometimes the application does not directly generate the SQL statements, for example if an O/R mapping tool is used. To view the SQL statements and JDBC API calls, you can use the trace options. For more information, see <a href="features.html#trace_options">Using the Trace Options</a> . @performance_1389_h3 Index Usage @performance_1390_p This database uses indexes to improve the performance of SELECT, UPDATE and DELETE statements. If a column is used in the WHERE clause of a query, and if an index exists on this column, then the index can be used. Multi-column indexes are used if all or the first columns of the index are used. Both equality lookup and range scans are supported. Indexes are not used to order result sets: The results are sorted in memory if required. Indexes are created automatically for primary key and unique constraints. Indexes are also created for foreign key constraints, if required. For other columns, indexes need to be created manually using the CREATE INDEX statement. @performance_1391_h3 Optimizer @performance_1392_p This database uses a cost based optimizer. For simple and queries and queries with medium complexity (less than 7 tables in the join), the expected cost (running time) of all possible plans is calculated, and the plan with the lowest cost is used. For more complex queries, the algorithm first tries all possible combinations for the first few tables, and the remaining tables added using a greedy algorithm (this works well for most joins). Afterwards a genetic algorithm is used to test at most 2000 distinct plans. Only left-deep plans are evaluated. @performance_1393_h3 Expression Optimization @performance_1394_p After the statement is parsed, all expressions are simplified automatically if possible. Operations are evaluated only once if all parameters are constant. Functions are also optimized, but only if the function is constant (always returns the same result for the same parameter values). If the WHERE clause is always false, then the table is not accessed at all. @performance_1395_h3 COUNT(*) Optimization @performance_1396_p If the query only counts all rows of a table, then the data is not accessed. However, this is only possible if no WHERE clause is used, that means it only works for queries of the form SELECT COUNT(*) FROM table. @performance_1397_h3 Updating Optimizer Statistics / Column Selectivity @performance_1398_p When executing a query, at most one index per joined table can be used. If the same table is joined multiple times, for each join only one index is used. Example: for the query SELECT * FROM TEST T1, TEST T2 WHERE T1.NAME='A' AND T2.ID=T1.ID, two index can be used, in this case the index on NAME for T1 and the index on ID for T2. @performance_1399_p If a table has multiple indexes, sometimes more than one index could be used. Example: if there is a table TEST(ID, NAME, FIRSTNAME) and an index on each column, then two indexes could be used for the query SELECT * FROM TEST WHERE NAME='A' AND FIRSTNAME='B', the index on NAME or the index on FIRSTNAME. It is not possible to use both indexes at the same time. Which index is used depends on the selectivity of the column. The selectivity describes the 'uniqueness' of values in a column. A selectivity of 100 means each value appears only once, and a selectivity of 1 means the same value appears in many or most rows. For the query above, the index on NAME should be used if the table contains more distinct names than first names. @performance_1400_p The SQL statement ANALYZE can be used to automatically estimate the selectivity of the columns in the tables. This command should be run from time to time to improve the query plans generated by the optimizer. @quickstartText_1000_h1 Quickstart @quickstartText_1001_a Embedding H2 in an Application @quickstartText_1002_a The H2 Console Application @quickstartText_1003_h2 Embedding H2 in an Application @quickstartText_1004_p This database can be used in embedded mode, or in server mode. To use it in embedded mode, you need to: @quickstartText_1005_li Add <code>h2.jar</code> to the classpath @quickstartText_1006_li Use the JDBC driver class: <code>org.h2.Driver</code> @quickstartText_1007_li The database URL <code>jdbc:h2:~/test</code> opens the database 'test' in your user home directory @quickstartText_1008_h2 The H2 Console Application @quickstartText_1009_p The Console lets you access a SQL database using a browser interface. @quickstartText_1010_p If you don't have Windows XP, or if something does not work as expected, please see the detailed description in the <a href="tutorial.html">Tutorial</a> . @quickstartText_1011_h3 Step-by-Step @quickstartText_1012_h4 Installation @quickstartText_1013_p Install the software using the Windows Installer (if you did not yet do that). @quickstartText_1014_h4 Start the Console @quickstartText_1015_p Click <span class="button">Start</span> , <span class="button">All Programs</span> , <span class="button">H2</span> , and <span class="button">H2 Console (Command Line)</span> : @quickstartText_1016_p A new console window appears: @quickstartText_1017_p Also, a new browser page should open with the URL http://localhost:8082. You may get a security warning from the firewall. If you don't want other computers in the network to access the database on your machine, you can let the firewall block these connections. Only local connections are required at this time. @quickstartText_1018_h4 Login @quickstartText_1019_p Select <span class="button">Generic H2</span> and click <span class="button">Connect</span> : @quickstartText_1020_p You are now logged in. @quickstartText_1021_h4 Sample @quickstartText_1022_p Click on the <span class="button">Sample SQL Script</span> : @quickstartText_1023_p The SQL commands appear in the command area. @quickstartText_1024_h4 Execute @quickstartText_1025_p Click <span class="button">Run</span> : @quickstartText_1026_p On the left side, a new entry TEST is added below the database icon. The operations and results of the statements are shown below the script. @quickstartText_1027_h4 Disconnect @quickstartText_1028_p Click on <span class="button">Disconnect</span> : @quickstartText_1029_p to close the database. @quickstartText_1030_h4 End @quickstartText_1031_p Close the console window. For more information, see the <a href="tutorial.html">Tutorial</a> . @roadmap_1000_h1 Roadmap @roadmap_1001_h2 Highest Priority @roadmap_1002_li Improve test code coverage @roadmap_1003_li More fuzz tests @roadmap_1004_li Test very large databases and LOBs (up to 256 GB) @roadmap_1005_li Test multi-threaded in-memory db access @roadmap_1006_h2 In Version 1.1 @roadmap_1007_li Add version number. Install directory: h2-1.0, jar file: h2-1.0.jar. Micro version: use build number, staring with 1.1.100 @roadmap_1008_li Automatic upgrade if there is a file format change @roadmap_1009_li Change Constants.DEFAULT_MAX_MEMORY_UNDO to 10000 (and change the docs). Test. @roadmap_1010_li Enable and document optimizations, LOB files in directories @roadmap_1011_li Special methods for DataPage.writeByte / writeShort and so on @roadmap_1012_li Index organized tables CREATE TABLE...(...) ORGANIZATION INDEX (store in data file) (probably file format changes are required for rowId) @roadmap_1013_li Change the default for NULL || 'x' to NULL @roadmap_1014_h2 Priority 1 @roadmap_1015_li Write more tests and documentation for MVCC (Multi Version Concurrency Control) @roadmap_1016_li RECOVER=1 should automatically recover, =2 should run the recovery tool if required @roadmap_1017_li More tests with MULTI_THREADED=1 @roadmap_1018_li Test with Spatial DB in a box / JTS (http://docs.codehaus.org/display/GEOS/SpatialDBBox) @roadmap_1019_li Optimization: result set caching (like MySQL) @roadmap_1020_li Server side cursors @roadmap_1021_li Row level locking @roadmap_1022_li Long running queries / errors / trace system table @roadmap_1023_li Migrate database tool (also from other database engines) @roadmap_1024_li Shutdown compact @roadmap_1025_li Document server mode, embedded mode, web app mode, dual mode (server+embedded) @roadmap_1026_li Updatable result sets: DatabaseMetaData.ownUpdatesAreVisible = true (for insert, delete, update) Simple solution: automatically calls 'refresh' when the result was changed. Compare with other databases. @roadmap_1027_h2 Priority 2 @roadmap_1028_li Automatic mode: jdbc:h2:auto: (embedded mode if possible, if not use server mode). Keep the server running until all have disconnected. @roadmap_1029_li Support OSGi: http://oscar-osgi.sourceforge.net, http://incubator.apache.org/felix/index.html @roadmap_1030_li Better space re-use in the files after deleting data (shrink the files) @roadmap_1031_li Shrink the data file without closing the database (if the end of the file is empty) @roadmap_1032_li Full outer joins @roadmap_1033_li Procedural language / script language (Javascript) @roadmap_1034_li Change LOB mechanism (less files, keep index of lob files, point to files and row, delete unused files earlier, maybe bundle files into a tar file) @roadmap_1035_li Clustering: recovery needs to becomes fully automatic. Global write lock feature. @roadmap_1036_li Deferred integrity checking (DEFERRABLE INITIALLY DEFERRED) @roadmap_1037_li Groovy Stored Procedures (http://groovy.codehaus.org/Groovy+SQL) @roadmap_1038_li System table / function: cache usage @roadmap_1039_li Add a migration guide (list differences between databases) @roadmap_1040_li Optimization: automatic index creation suggestion using the trace file? @roadmap_1041_li Compression performance: don't allocate buffers, compress / expand in to out buffer @roadmap_1042_li Connection pool manager @roadmap_1043_li Implement Statement.cancel for server connections @roadmap_1044_li Start / stop server with database URL @roadmap_1045_li Sequence: add features [NO] MINVALUE, MAXVALUE, CYCLE @roadmap_1046_li Rebuild index functionality (other than delete the index file) @roadmap_1047_li Don't use deleteOnExit (bug 4513817: File.deleteOnExit consumes memory) @roadmap_1048_li Console: add accesskey to most important commands (A, AREA, BUTTON, INPUT, LABEL, LEGEND, TEXTAREA) @roadmap_1049_li Feature: a setting to delete the the log or not (for backup) @roadmap_1050_li Test with Sun ASPE1_4; JEE Sun AS PE1.4 @roadmap_1051_li Test performance again with SQL Server, Oracle, DB2 @roadmap_1052_li Test with dbmonster (http://dbmonster.kernelpanic.pl/) @roadmap_1053_li Test with dbcopy (http://dbcopyplugin.sourceforge.net) @roadmap_1054_li Find a tool to view a text file >100 MB, with find, page up and down (like less) @roadmap_1055_li Implement, test, document XAConnection and so on @roadmap_1056_li Web site: meta keywords, description, get rid of frame set @roadmap_1057_li Pluggable data type (for compression, validation, conversion, encryption) @roadmap_1058_li CHECK: find out what makes CHECK=TRUE slow, move to CHECK2 @roadmap_1059_li Improve recovery: improve code for log recovery problems (less try/catch) @roadmap_1060_li Log linear hash index changes, fast open / close @roadmap_1061_li Index usage for (ID, NAME)=(1, 'Hi'); document @roadmap_1062_li Suggestion: include jetty as Servlet Container (like LAMP) @roadmap_1063_li Trace shipping to server @roadmap_1064_li Performance / server mode: use UDP optionally? @roadmap_1065_li Version check: docs / web console (using javascript), and maybe in the library (using TCP/IP) @roadmap_1066_li Web server classloader: override findResource / getResourceFrom @roadmap_1067_li Cost for embedded temporary view is calculated wrong, if result is constant @roadmap_1068_li Comparison: pluggable sort order: natural sort @roadmap_1069_li Count index range query (count(*) where id between 10 and 20) @roadmap_1070_li Eclipse plugin @roadmap_1071_li iReport to support H2 @roadmap_1072_li Implement missing JDBC API (CallableStatement,...) @roadmap_1073_li Compression of the cache @roadmap_1074_li Run H2 Console inside servlet (pass-through servlet of fix the JSP / app) @roadmap_1075_li Include SMPT (mail) server (at least client) (alert on cluster failure, low disk space,...) @roadmap_1076_li Drop with restrict (currently cascade is the default) @roadmap_1077_li JSON parser and functions @roadmap_1078_li Option for Java functions: constant/isDeterministic to allow early evaluation when all parameters are constant @roadmap_1079_li Automatic collection of statistics (auto ANALYZE) @roadmap_1080_li Server: client ping from time to time (to avoid timeout - is timeout a problem?) @roadmap_1081_li Copy database: Tool with config GUI and batch mode, extensible (example: compare) @roadmap_1082_li Document, implement tool for long running transactions using user defined compensation statements @roadmap_1083_li Support SET TABLE DUAL READONLY @roadmap_1084_li Linked schema using CSV files: one schema for a directory of files; support indexes for CSV files @roadmap_1085_li Don't write stack traces for common exceptions like duplicate key to the log by default @roadmap_1086_li Setting for MAX_QUERY_TIME (default no limit?) @roadmap_1087_li GCJ: what is the state now? @roadmap_1088_li Use Janino to convert Java to C++ @roadmap_1089_li Reduce disk space usage (Derby uses less disk space?) @roadmap_1090_li Events for: Database Startup, Connections, Login attempts, Disconnections, Prepare (after parsing), Web Server (see http://docs.openlinksw.com/virtuoso/fn_dbev_startup.html) @roadmap_1091_li Optimization: Log compression @roadmap_1092_li Support standard INFORMATION_SCHEMA tables, as defined in http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt; specially KEY_COLUMN_USAGE (http://dev.mysql.com/doc/refman/5.0/en/information-schema.html, http://www.xcdsql.org/Misc/INFORMATION_SCHEMA%20With%20Rolenames.gif) @roadmap_1093_li Compatibility: in MySQL, HSQLDB, /0.0 is NULL; in PostgreSQL, Derby: Division by zero @roadmap_1094_li Functional tables should accept parameters from other tables (see FunctionMultiReturn) SELECT * FROM TEST T, P2C(T.A, T.R) @roadmap_1095_li Custom class loader to reload functions on demand @roadmap_1096_li Test http://mysql-je.sourceforge.net/ @roadmap_1097_li Close all files when closing the database (including LOB files that are open on the client side) @roadmap_1098_li Test Connection Pool http://jakarta.apache.org/commons/dbcp @roadmap_1099_li Profiler option or profiling tool to find long running and often repeated queries (using DatabaseEventListener API) @roadmap_1100_li Function to read/write a file from/to LOB @roadmap_1101_li Allow custom settings (@PATH for RUNSCRIPT for example) @roadmap_1102_li EXE file: maybe use http://jsmooth.sourceforge.net @roadmap_1103_li SELECT ... FOR READ WAIT [maxMillisToWait] @roadmap_1104_li Automatically delete the index file if opening it fails @roadmap_1105_li Performance: Automatically build in-memory indexes if the whole table is in memory @roadmap_1106_li H2 Console: The webclient could support more features like phpMyAdmin. @roadmap_1107_li The HELP information schema can be directly exposed in the Console @roadmap_1108_li Maybe use the 0x1234 notation for binary fields, see MS SQL Server @roadmap_1109_li Support Oracle CONNECT BY in some way: http://www.adp-gmbh.ch/ora/sql/connect_by.html, http://philip.greenspun.com/sql/trees.html @roadmap_1110_li SQL 2003 (http://www.wiscorp.com/sql_2003_standard.zip) @roadmap_1111_li http://www.jpackage.org @roadmap_1112_li Version column (number/sequence and timestamp based) @roadmap_1113_li Optimize getGeneratedKey: send last identity after each execute (server). @roadmap_1114_li Date: default date is '1970-01-01' (is it 1900-01-01 in the standard / other databases?) @roadmap_1115_li Test and document UPDATE TEST SET (ID, NAME) = (SELECT ID*10, NAME || '!' FROM TEST T WHERE T.ID=TEST.ID); @roadmap_1116_li Max memory rows / max undo log size: use block count / row size not row count @roadmap_1117_li Index summary is only written if log=2; maybe write it also when log=1 and everything is fine (and no in doubt transactions) @roadmap_1118_li Support 123L syntax as in Java; example: SELECT (2000000000*2) @roadmap_1119_li Implement point-in-time recovery @roadmap_1120_li Memory database: add a feature to keep named database open until 'shutdown' @roadmap_1121_li Use the directory of the first script as the default directory for any scripts run inside that script @roadmap_1122_li Include the version name in the jar file name @roadmap_1123_li Optimize ID=? OR ID=?: convert to IN(...) @roadmap_1124_li LIKE: improved version for larger texts (currently using naive search) @roadmap_1125_li Auto-reconnect on lost connection to server (even if the server was re-started) except if autocommit was off and there was pending transaction @roadmap_1126_li The Script tool should work with other databases as well @roadmap_1127_li Automatically convert to the next 'higher' data type whenever there is an overflow. @roadmap_1128_li Throw an exception when the application calls getInt on a Long (optional) @roadmap_1129_li Default date format for input and output (local date constants) @roadmap_1130_li Cache collation keys for performance @roadmap_1131_li ValueInt.convertToString and so on (remove Value.convertTo) @roadmap_1132_li Support custom Collators @roadmap_1133_li Document ROWNUM usage for reports: SELECT ROWNUM, * FROM (subquery) @roadmap_1134_li Clustering: Reads should be randomly distributed or to a designated database on RAM @roadmap_1135_li Clustering: When a database is back alive, automatically synchronize with the master @roadmap_1136_li Standalone tool to get relevant system properties and add it to the trace output. @roadmap_1137_li Support mixed clustering mode (one embedded, the other server mode) @roadmap_1138_li Support 'call proc(1=value)' (PostgreSQL, Oracle) @roadmap_1139_li HSQLDB compatibility: "INSERT INTO TEST(name) VALUES(?); SELECT IDENTITY()" @roadmap_1140_li Shutdown lock (shutdown can only start if there are no logins pending, and logins are delayed until shutdown ends) @roadmap_1141_li Automatically delete the index file if opening it fails @roadmap_1142_li DbAdapters http://incubator.apache.org/cayenne/ @roadmap_1143_li JAMon (proxy jdbc driver) @roadmap_1144_li Console: Allow setting Null value; Alternative display format two column (for copy and paste as well) @roadmap_1145_li Console: Improve editing data (Tab, Shift-Tab, Enter, Up, Down, Shift+Del?) @roadmap_1146_li Console: Autocomplete Ctrl+Space inserts template @roadmap_1147_li Google Code http://code.google.com/p/h2database/issues/list# @roadmap_1148_li Simplify translation ('Donate a translation') @roadmap_1149_li Option to encrypt .trace.db file @roadmap_1150_li Write Behind Cache on SATA leads to data corruption See also http://sr5tech.com/write_back_cache_experiments.htm and http://www.jasonbrome.com/blog/archives/2004/04/03/writecache_enabled.html @roadmap_1151_li Functions with unknown return or parameter data types: serialize / deserialize @roadmap_1152_li Test if idle TCP connections are closed, and how to disable that @roadmap_1153_li Try using a factory for Row, Value[] (faster?), http://javolution.org/, alternative ObjectArray / IntArray @roadmap_1154_li Auto-Update feature for database, .jar file @roadmap_1155_li ResultSet SimpleResultSet.readFromURL(String url): id varchar, state varchar, released timestamp @roadmap_1156_li RANK() and DENSE_RANK(), Partition using OVER() @roadmap_1157_li ROW_NUMBER (not the same as ROWNUM) @roadmap_1158_li Partial indexing (see PostgreSQL) @roadmap_1159_li BUILD should fail if ant test fails @roadmap_1160_li http://rubyforge.org/projects/hypersonic/ @roadmap_1161_li DbVisualizer profile for H2 @roadmap_1162_li Add comparator (x === y) : (x = y or (x is null and y is null)) @roadmap_1163_li Try to create trace file even for read only databases @roadmap_1164_li Add a sample application that runs the H2 unit test and writes the result to a file (so it can be included in the user app) @roadmap_1165_li Count on a column that can not be null would be optimized to COUNT(*) @roadmap_1166_li Table order: ALTER TABLE TEST ORDER BY NAME DESC (MySQL compatibility) @roadmap_1167_li Backup tool should work with other databases as well @roadmap_1168_li Console: -ifExists doesn't work for the console. Add a flag to disable other dbs @roadmap_1169_li Maybe use Fowler Noll Vo hash function @roadmap_1170_li Improved full text search (supports LOBs, reader / tokenizer / filter). @roadmap_1171_li Performance: Update in-place @roadmap_1172_li Check if 'FSUTIL behavior set disablelastaccess 1' improves the performance (fsutil behavior query disablelastaccess) @roadmap_1173_li Java static code analysis: http://pmd.sourceforge.net/ @roadmap_1174_li Java static code analysis: http://www.eclipse.org/tptp/ @roadmap_1175_li Compatibility for CREATE SCHEMA AUTHORIZATION @roadmap_1176_li Implement Clob / Blob truncate and the remaining functionality @roadmap_1177_li Maybe close LOBs after closing connection @roadmap_1178_li Tree join functionality @roadmap_1179_li Support alter table add column if table has views defined @roadmap_1180_li Add multiple columns at the same time with ALTER TABLE .. ADD .. ADD .. @roadmap_1181_li Support trigger on the tables information_schema.tables and ...columns @roadmap_1182_li Add H2 to Gem (Ruby install system) @roadmap_1183_li API for functions / user tables @roadmap_1184_li Order conditions inside AND / OR to optimize the performance @roadmap_1185_li Support linked JCR tables @roadmap_1186_li Make sure H2 is supported by Execute Query: http://executequery.org/ @roadmap_1187_li Read InputStream when executing, as late as possible (maybe only embedded mode). Problem with re-execute. @roadmap_1188_li Full text search: min word length; store word positions @roadmap_1189_li FTP Server: Implement a client to send / receive files to server (dir, get, put) @roadmap_1190_li FTP Server: Implement SFTP / FTPS @roadmap_1191_li Add an option to the SCRIPT command to generate only portable / standard SQL @roadmap_1192_li Test Dezign for Databases (http://www.datanamic.com) @roadmap_1193_li Fast library for parsing / formatting: http://javolution.org/ @roadmap_1194_li Updatable Views (simple cases first) @roadmap_1195_li Improve create index performance @roadmap_1196_li Support ARRAY data type @roadmap_1197_li Implement more JDBC 4.0 features @roadmap_1198_li H2 Console: implement a servlet to allow simple web app integration @roadmap_1199_li Support TRANSFORM / PIVOT as in MS Access @roadmap_1200_li SELECT * FROM (VALUES (...), (...), ....) AS alias(f1, ...) @roadmap_1201_li Support updatable views with join on primary keys (to extend a table) @roadmap_1202_li Public interface for functions (not public static) @roadmap_1203_li Autocomplete: if I type the name of a table that does not exist (should say: syntax not supported) @roadmap_1204_li Autocomplete: schema support: "Other Grammar","Table Expression","{[schemaName.]tableName | (select)} [[AS] newTableAlias] @roadmap_1205_li Functions: options readonly, deterministic (pure, always return the same value) @roadmap_1206_li Document FTP server, including -ftpTask option to execute / kill remote processes @roadmap_1207_li Add jdbcx to the javadocs @roadmap_1208_li Delay reading the row if data is not required @roadmap_1209_li Eliminate undo log records if stored on disk (just one pointer per block, not per record) @roadmap_1210_li Feature matrix like here: http://www.inetsoftware.de/products/jdbc/mssql/features/default.asp. @roadmap_1211_li Updatable result set on table without primary key or unique index @roadmap_1212_li Use LinkedList instead of ArrayList where applicable @roadmap_1213_li Optimization: (A=B AND B=C) > (A=B AND B=C AND A=C) @roadmap_1214_li Support % operator (modulo) @roadmap_1215_li Large subqueries: close them when the main query is closed, not earlier (so result can be reused) @roadmap_1216_li Support 1+'2'=3, '1'+'2'='12' (MS SQL Server compatibility) @roadmap_1217_li Support nested transactions @roadmap_1218_li Add a benchmark for big databases, and one for many users @roadmap_1219_li Compression in the result set (repeating values in the same column) @roadmap_1220_li Improve command line consistency (+/- options, or true false options) @roadmap_1221_li Allow to use the catalog name in statements: [[catalog.]schema.]object @roadmap_1222_li Support curtimestamp (like curtime, curdate) @roadmap_1223_li Support ANALYZE {TABLE|INDEX} tableName COMPUTE|ESTIMATE|DELETE STATISTICS ptnOption options @roadmap_1224_li Support Sequoia (Continuent.org) @roadmap_1225_li Dynamic length numbers / special methods for DataPage.writeByte / writeShort / Ronni Nielsen @roadmap_1226_li Pluggable tracing system, ThreadPool, (AvalonDB / deebee / Paul Hammant) @roadmap_1227_li Recursive Queries (see details) @roadmap_1228_li Use index on boolean flag (see details) @roadmap_1229_li Add build for embedded database only @roadmap_1230_li Release locks (shared or exclusive) on demand @roadmap_1231_li Support catalog names @roadmap_1232_li Add object id to metadata tables @roadmap_1233_li Support OUTER UNION @roadmap_1234_li Support Parameterized Views (similar to CSVREAD, but using just SQL for the definition) @roadmap_1235_li Implement a command line SQL utility similar to HenPlus: http://henplus.sourceforge.net @roadmap_1236_li A way (JDBC driver) to map an URL (jdbc:h2map:c1) to a connection object @roadmap_1237_li Build script for the embedded functionality only (h2embedded.jar) @roadmap_1238_li Option for SCRIPT to only process one or a set of tables, and append to a file @roadmap_1239_li Support using a unique index for IS NULL (including linked tables) @roadmap_1240_li Support linked tables to the current database @roadmap_1241_li Support dynamic linked schema (automatically adding/updating/removing tables) @roadmap_1242_li Compatibility with Derby: VALUES(1), (2); SELECT * FROM (VALUES (1), (2)) AS myTable(c1) @roadmap_1243_li Compatibility: # is the start of a single line comment (MySQL) but date quote (Access). Mode specific @roadmap_1244_li Run benchmarks with JDK 1.5, JDK 1.6, java -server @roadmap_1245_li Optimizations: Faster hash function for strings, byte arrays, big decimal @roadmap_1246_li DatabaseEventListener: callback for all operations (including expected time, RUNSCRIPT) and cancel functionality @roadmap_1247_li H2 Console / large result sets: use 'streaming' instead of building the page in-memory @roadmap_1248_li Benchmark: add a graph to show how databases scale (performance/database size) @roadmap_1249_li Implement a SQLData interface to map your data over to a custom object @roadmap_1250_li Extend H2 Console to run tools (show command line as well) @roadmap_1251_li Make DDL (Data Definition) operations transactional @roadmap_1252_li Allow execution time prepare for SELECT * FROM CSVREAD(?, 'columnNameString') @roadmap_1253_li Support multiple directories (on different hard drives) for the same database @roadmap_1254_li Server protocol: use challenge response authentication, but client sends hash(user+password) encrypted with response @roadmap_1255_li Support EXEC[UTE] (doesn't return a result set, compatible to MS SQL Server) @roadmap_1256_li GROUP BY and DISTINCT: support large groups (buffer to disk), do not keep large sets in memory @roadmap_1257_li Support native XML data type @roadmap_1258_li Support triggers with a string property or option: SpringTrigger, OSGITrigger @roadmap_1259_li Clustering: adding a node should be very fast and without interrupting clients (very short lock) @roadmap_1260_li Support materialized views (using triggers) @roadmap_1261_li Store dates in local timezone (portability of database files) @roadmap_1262_li Ability to resize the cache array when resizing the cache @roadmap_1263_li Automatic conversion from WHERE X>10 AND X>20 to X>20 @roadmap_1264_li Time based cache writing (one second after writing the log) @roadmap_1265_li Check state of H2 driver for DDLUtils: https://issues.apache.org/jira/browse/DDLUTILS-185 @roadmap_1266_li Index usage for REGEXP LIKE. @roadmap_1267_li Add a role DBA (like ADMIN). @roadmap_1268_li Better support multiple processors for in-memory databases. @roadmap_1269_li Access rights: remember the owner of an object. COMMENT: allow owner of object to change it. @roadmap_1270_li Implement INSTEAD OF trigger. @roadmap_1271_li Access rights: Finer grained access control (grant access for specific functions) @roadmap_1272_li Support N'text' @roadmap_1273_li Support SCOPE_IDENTITY() to avoid problems when inserting rows in a trigger @roadmap_1274_li Support DESCRIBE like MySQL or Oracle (DESC|DESCRIBE {[schema.]object[@connect_identifier]}) @roadmap_1275_li Set a connection read only (Connection.setReadOnly) @roadmap_1276_li In MySQL mode, for AUTO_INCREMENT columns, don't set the primary key @roadmap_1277_li Use JDK 1.4 file locking to create the lock file (but not yet by default); writing a system property to detect concurrent access from the same VM (different classloaders). @roadmap_1278_li Read-only sessions (Connection.setReadOnly) @roadmap_1279_li Support compatibility for jdbc:hsqldb:res: @roadmap_1280_li In the MySQL and PostgreSQL, use lower case identifiers by default (DatabaseMetaData.storesLowerCaseIdentifiers = true) @roadmap_1281_li Provide a simple, lightweight O/R mapping tool @roadmap_1282_li Provide an Java SQL builder with standard and H2 syntax @roadmap_1283_li Trace: write OS, file system, JVM,... when opening the database @roadmap_1284_li Trace: write dangerous operations (set log 0,...) in every case (including when opening the database) @roadmap_1285_li ParameterMetaData should return correct data type where possible (INSERT for example) @roadmap_1286_li Support indexes for views (probably requires materialized views) @roadmap_1287_li Linked tables that point to the same database should share the connection @roadmap_1288_li Document SET SEARCH_PATH, BEGIN, EXECUTE, parameters @roadmap_1289_li Complete Javadocs for ErrorCode messages and add to docs @roadmap_1290_li Browser: use Desktop.isDesktopSupported and browse when using JDK 1.6 @roadmap_1291_li Document org.h2.samples.MixedMode @roadmap_1292_li Server: use one listener (detect if the request comes from an PG or TCP client) @roadmap_1293_li Store dates as 'local'. Existing files use GMT. Use escape syntax for compatibility. @roadmap_1294_li Support data type INTERVAL @roadmap_1295_li NATURAL JOIN: MySQL and PostgreSQL don't repeat columns when using SELECT * ... @roadmap_1296_li Optimize SELECT MIN(ID), MAX(ID), COUNT(*) FROM TEST WHERE ID BETWEEN 100 AND 200 @roadmap_1297_li Support Oracle functions: TRUNC, NVL2, TO_CHAR, TO_DATE, TO_NUMBER @roadmap_1298_li Support setQueryTimeout (using System.currentTimeMillis in a loop; not using a thread) @roadmap_1299_li Sequence: PostgreSQL compatibility (rename, create) (http://www.postgresql.org/docs/8.2/static/sql-altersequence.html) @roadmap_1300_li DISTINCT: Support large result sets by sorting on all columns (additionally) and then removing duplicates. @roadmap_1301_li Add replicating file system @roadmap_1302_li File system that writes to two file systems (for replication) @roadmap_1303_li File system with a background writer thread; test if this is faster @roadmap_1304_li FTP access to a database (.csv for a table, a directory for a schema, a file for a lob, a script.sql file). @roadmap_1305_li LIMIT and OFFSET for GROUP_CONCAT @roadmap_1306_li Support triggers for INFORMATION_SCHEMA tables (to better support PostgreSQL catalog: rebuild after creating new tables) @roadmap_1307_li Better document the source code @roadmap_1308_li Support select * from dual a left join dual b on b.x=(select max(x) from dual) @roadmap_1309_li Optimization: don't lock when the database is read-only @roadmap_1310_li Integrate spatial functions from http://geosysin.iict.ch/irstv-trac/wiki/H2spatial/Download @roadmap_1311_li Support COSH, SINH, and TANH functions @roadmap_1312_li Native search: support "phrase search", wildcard search (* and ?), case-insensitive search, boolean operators, and grouping @roadmap_1313_li Improve documentation of access rights @roadmap_1314_li Support ENUM data type (see MySQL, PostgreSQL, MS SQL Server, maybe others) @roadmap_1315_li Command line option for the H2 Console and TCP configuration (.h2.server.properties and .h2.keystore) @roadmap_1316_li Automatically switch the source code to the right platform before compiling @roadmap_1317_li Support a schema name for Java functions @roadmap_1318_li Remember the domain of a column @roadmap_1319_li Support Jackcess (MS Access databases) @roadmap_1320_li Optimize truncate and drop table (currently all pages are overwritten) @roadmap_1321_li Built-in methods to write large objects (BLOB and CLOB): FILE_WRITE('test.txt', 'Hello World') @roadmap_1322_li Change package name in version 2.0: org.h2database @roadmap_1323_li MVCC: support transactionally consistent backups using SCRIPT @roadmap_1324_li Improve time to open large databases (see mail 'init time for distributed setup') @roadmap_1325_li Use ARRAY for fulltext search return value, at least internally in the native implementation (and as an option for the user) @roadmap_1326_li Move Maven 2 repository from hsql.sf.net to h2database.sf.net @roadmap_1327_li Java 1.5 tool: JdbcUtils.closeSilently(s1, s2,...) @roadmap_1328_li Document how to use IKVM @roadmap_1329_li Javadoc: document design patterns used @roadmap_1330_li Update Wikipedia @roadmap_1331_li Try https://hudson.dev.java.net/ @roadmap_1332_li Don't create @~ of not translated @roadmap_1333_li Triggers for metadata tables; use for PostgreSQL catalog @roadmap_1334_li Does the FTP server has problems with multithreading? @roadmap_1335_li Write an article about SQLInjection (h2\src\docsrc\html\images\SQLInjection.txt) @roadmap_1336_li Convert SQL-injection-2.txt to html document, include SQLInjection.java sample @roadmap_1337_li Send SQL Injection solution proposal to PostgreSQL, MySQL, Derby, HSQLDB,... @roadmap_1338_li Improve LOB in directories performance @roadmap_1339_li Web site design: http://www.igniterealtime.org/projects/openfire/index.jsp @roadmap_1340_li HSQLDB compatibility: Openfire server uses: CREATE SCHEMA PUBLIC AUTHORIZATION DBA; CREATE USER SA PASSWORD ""; GRANT DBA TO SA; SET SCHEMA PUBLIC @roadmap_1341_li Web site: Rename Performance to Comparison [/Compatibility], move Comparison to Other Database Engines to Comparison, move Products that Work with H2 to Comparison, move Performance Tuning to Advanced Topics @roadmap_1342_li Translation: use ${.} in help.csv @roadmap_1343_li Translated .pdf @roadmap_1344_li Cluster: hot deploy (adding a node on runtime) @roadmap_1345_li Test with PostgreSQL Version 8.2 @roadmap_1346_li Submit again to http://www.docjar.com/ @roadmap_1347_li Website: Don't use frames. @roadmap_1348_li Try again with Lobo browser (pure Java) @roadmap_1349_li Recovery tool: bad blocks should be converted to INSERT INTO SYSTEM_ERRORS(...), and things should go into the .trace.db file @roadmap_1350_li RECOVER=2 to backup the database, run recovery, open the database @roadmap_1351_li Recovery should work with encrypted databases @roadmap_1352_li Integrate tools in H2 Console @roadmap_1353_li Corruption: new error code, add help @roadmap_1354_li Space reuse: after init, scan all storages and free those that don't belong to a live database object @roadmap_1355_li SysProperties: change everything to H2_... @roadmap_1356_li Use FilterIn / FilterOut putStream? @roadmap_1357_li Access rights: add missing features (users should be 'owner' of objects; missing rights for sequences; dropping objects) @roadmap_1358_h2 Not Planned @roadmap_1359_li HSQLDB (did) support this: select id i from test where i>0 (other databases don't). Supporting it may break compatibility. @roadmap_1360_li String.intern (so that Strings can be compared with ==) will not be used because some VMs have problems when used extensively. @search_1000_b Search: @search_1001_td Highlight keyword(s) @search_1002_a Home @search_1003_a Quickstart @search_1004_a Installation @search_1005_a Tutorial @search_1006_a Features @search_1007_a Performance @search_1008_a Advanced Topics @search_1009_b Reference @search_1010_a SQL Grammar @search_1011_a Functions @search_1012_a Data Types @search_1013_a Javadoc JDBC API @search_1014_a Documentation as PDF @search_1015_a Error Analyzer @search_1016_b Appendix @search_1017_a Build @search_1018_a History and Roadmap @search_1019_a FAQ and Known Bugs @search_1020_a License @sourceError_1000_h1 Online Error Analyzer @sourceError_1001_a Input @sourceError_1002_h2 <a href="javascript:select('details')" id="detailsTab">Details</a> <a href="javascript:select('source')" id="sourceTab">Source Code</a> @sourceError_1003_p Fill in the error message and stack trace and click on 'Details' or 'Source Code': @sourceError_1004_b Error Code: @sourceError_1005_b Product Version: @sourceError_1006_b Message: @sourceError_1007_b More Information: @sourceError_1008_b Stack Trace: @sourceError_1009_b Source File: @sourceError_1010_p Raw file @sourceError_1011_p (fast; only Firefox) @tutorial_1000_h1 Tutorial @tutorial_1001_a Starting and Using the H2 Console @tutorial_1002_a Connecting to a Database using JDBC @tutorial_1003_a Creating New Databases @tutorial_1004_a Using the Server @tutorial_1005_a Using Hibernate @tutorial_1006_a Using Databases in Web Applications @tutorial_1007_a CSV (Comma Separated Values) Support @tutorial_1008_a Upgrade, Backup, and Restore @tutorial_1009_a Using OpenOffice Base @tutorial_1010_a Java Web Start / JNLP @tutorial_1011_a Fulltext Search @tutorial_1012_a User Defined Variables @tutorial_1013_h2 Starting and Using the H2 Console @tutorial_1014_p This application lets you access a SQL database using a browser interface. This can be a H2 database, or another database that supports the JDBC API. @tutorial_1015_p This is a client / server application, so both a server and a client (a browser) are required to run it. @tutorial_1016_p Depending on your platform and environment, there are multiple ways to start the application: @tutorial_1017_th OS @tutorial_1018_th Start @tutorial_1019_td Windows @tutorial_1020_td Click [Start], [All Programs], [H2], and [H2 Console (Command Line)] @tutorial_1021_td When using the Sun JDK 1.4 or 1.5, a window with the title 'H2 Console ' should appear. When using the Sun JDK 1.6, an icon will be added to the system tray: @tutorial_1022_td If you don't get the window and the system tray icon, then maybe Java is not installed correctly (in this case, try another way to start the application). A browser window should open and point to the Login page http://localhost:8082). @tutorial_1023_td Windows @tutorial_1024_td Open a file browser, navigate to h2/bin, and double click on h2.bat. @tutorial_1025_td A console window appears. If there is a problem, you will see an error message in this window. A browser window will open and point to the Login page (URL: http://localhost:8082). @tutorial_1026_td Any @tutorial_1027_td Open a console window, navigate to the directory 'h2/bin' and type: @tutorial_1028_h3 Firewall @tutorial_1029_p If you start the server, you may get a security warning from the firewall (if you have installed one). If you don't want other computers in the network to access the application on your machine, you can let the firewall block those connections. The connection from the local machine will still work. Only if you want other computers to access the database on this computer, you need allow remote connections in the firewall. @tutorial_1030_p A small firewall is already built into the server: other computers may not connect to the server by default. To change this, go to 'Preferences' and select 'Allow connections from other computers'. @tutorial_1031_h3 Native Version @tutorial_1032_p The native version does not require Java, because it is compiled using GCJ. However H2 does currently not run stable with GCJ on Windows It is possible to compile the software to different platforms. @tutorial_1033_h3 Testing Java @tutorial_1034_p To check the Java version you have installed, open a command prompt and type: @tutorial_1035_p If you get an error message, you may need to add the Java binary directory to the path environment variable. @tutorial_1036_h3 Error Message 'Port is in use' @tutorial_1037_p You can only start one instance of the H2 Console, otherwise you will get the following error message: <code>Port is in use, maybe another ... server already running on...</code> . It is possible to start multiple console applications on the same computer (using different ports), but this is usually not required as the console supports multiple concurrent connections. @tutorial_1038_h3 Using another Port @tutorial_1039_p If the port is in use by another application, you may want to start the H2 Console on a different port. This can be done by changing the port in the file .h2.server.properties. This file is stored in the user directory (for Windows, this is usually in "Documents and Settings/<username>"). The relevant entry is webPort. @tutorial_1040_h3 Starting Successfully @tutorial_1041_p If starting the server from a console window was successful, a new window will open and display the following text: @tutorial_1042_p Don't click inside this window; otherwise you might block the application (if you have the Fast-Edit mode enabled). @tutorial_1043_h3 Connecting to the Server using a Browser @tutorial_1044_p If the server started successfully, you can connect to it using a web browser. The browser needs to support JavaScript, frames and cascading stylesheets (css). If you started the server on the same computer as the browser, go to http://localhost:8082 in the browser. If you want to connect to the application from another computer, you need to provide the IP address of the server, for example: http://192.168.0.2:8082. If you enabled SSL on the server side, the URL needs to start with HTTPS. @tutorial_1045_h3 Multiple Concurrent Sessions @tutorial_1046_p Multiple concurrent browser sessions are supported. As that the database objects reside on the server, the amount of concurrent work is limited by the memory available to the server application. @tutorial_1047_h3 Application Properties @tutorial_1048_p Starting the server will create a configuration file in you local home directory called <code>.h2.server.properties</code> . For Windows installations, this file will be in the directory <code>C:\Documents and Settings\[username]</code> . This file contains the settings of the application. @tutorial_1049_h3 Login @tutorial_1050_p At the login page, you need to provide connection information to connect to a database. Set the JDBC driver class of your database, the JDBC URL, user name and password. If you are done, click [Connect]. @tutorial_1051_p You can save and reuse previously saved settings. The settings are stored in the Application Properties file. @tutorial_1052_h3 Error Messages @tutorial_1053_p Error messages in are shown in red. You can show/hide the stack trace of the exception by clicking on the message. @tutorial_1054_h3 Adding Database Drivers @tutorial_1055_p Additional database drivers can be registered by adding the Jar file location of the driver to the environment variables H2DRIVERS or CLASSPATH. Example (Windows): To add the database driver library C:\Programs\hsqldb\lib\hsqldb.jar, set the environment variable H2DRIVERS to C:\Programs\hsqldb\lib\hsqldb.jar. @tutorial_1056_p Multiple drivers can be set; each entry needs to be separated with a ';' (Windows) or ':' (other operating systems). Spaces in the path names are supported. The settings must not be quoted. @tutorial_1057_p Only the Java version supports additional drivers (this feature is not supported by the Native version). @tutorial_1058_h3 Using the Application @tutorial_1059_p The application has three main panels, the toolbar on top, the tree on the left and the query / result panel on the right. The database objects (for example, tables) are listed on the left panel. Type in a SQL command on the query panel and click 'Run'. The result of the command appears just below the command. @tutorial_1060_h3 Inserting Table Names or Column Names @tutorial_1061_p The table name and column names can be inserted in the script by clicking them in the tree. If you click on a table while the query is empty, a 'SELECT * FROM ...' is added as well. While typing a query, the table that was used is automatically expanded in the tree. For, example if you type 'SELECT * FROM TEST T WHERE T.' then the table TEST is automatically expanded in the tree. @tutorial_1062_h3 Disconnecting and Stopping the Application @tutorial_1063_p On the browser, click 'Disconnect' on the toolbar panel. You will be logged out of the database. However, the server is still running and ready to accept new sessions. @tutorial_1064_p To stop the server, right click on the system tray icon and select [Exit]. If you don't have the icon (because you started it in another way), press [Ctrl]+[C] on the console where the server was started (Windows), or close the console window. @tutorial_1065_h2 Connecting to a Database using JDBC @tutorial_1066_p To connect to a database, a Java application first needs to load the database driver, and then get a connection. A simple way to do that is using the following code: @tutorial_1067_p This code first loads the driver ( <code>Class.forName()</code> ) and then opens a connection (using <code>DriverManager.getConnection()</code> ). The driver name is <code>"org.h2.Driver"</code> in every case. The database URL always needs to start with <code>jdbc:h2:</code> to be recognized by this database. The second parameter in the <code>getConnection()</code> call is the user name ('sa' for System Administrator in this example). The third parameter is the password. Please note that in this database, user names are not case sensitive, but passwords are case sensitive. @tutorial_1068_h2 Creating New Databases @tutorial_1069_p By default, if the database specified in the URL does not yet exist, a new (empty) database is created automatically. The user that created the database automatically becomes the administrator of this database. @tutorial_1070_h2 Using the Server @tutorial_1071_p H2 currently supports three servers: a Web Server, a TCP Server and an ODBC Server. The servers can be started in different ways. @tutorial_1072_h3 Starting the Server from Command Line @tutorial_1073_p To start the Server from the command line with the default settings, run @tutorial_1074_p This will start the Server with the default options. To get the list of options and default values, run @tutorial_1075_p There are options available to use a different ports, and start or not start parts of the Server and so on. For details, see the API documentation of the Server tool. @tutorial_1076_h3 Connecting to the TCP Server @tutorial_1077_p To remotly connect to a database using the TCP server, use the following driver and database URL: @tutorial_1078_li JDBC driver class: org.h2.Driver @tutorial_1079_li Database URL: jdbc:h2:tcp://localhost/~/test @tutorial_1080_p For details about the database URL, see also in Features. @tutorial_1081_h3 Starting the Server within an Application @tutorial_1082_p It is also possible to start and stop a Server from within an application. Sample code: @tutorial_1083_h3 Stopping a TCP Server from Another Process @tutorial_1084_p The TCP Server can be stopped from another process. To stop the server from the command line, run: @tutorial_1085_p To stop the server from a user application, use the following code: @tutorial_1086_p This function will call System.exit on the server. This function should be called after all connection to the databases are closed to avoid recovery when the databases are opened the next time. To stop remote server, remote connections must be enabled on the server. @tutorial_1087_h3 Limitations of the Server @tutorial_1088_p There currently are a few limitations when using the server or cluster mode: @tutorial_1089_li Statement.cancel() is only supported in embedded mode. A connection can only execute one operation at a time in server or cluster mode, and is blocked until this operation is finished. @tutorial_1090_h2 Using Hibernate @tutorial_1091_p This database supports Hibernate version 3.1 and newer. You can use the HSQLDB Dialect, or the native H2 Dialect that is available in the file src/tools/org/h2/tools/hibernate/H2Dialect.txt. The H2 dialect is included in newer version of Hibernate. For versions where the dialect is missing, you need to copy the file into the folder src\org\hibernate\dialect (Hibernate 3.1), rename it to H2Dialect.java and re-compile hibernate. @tutorial_1092_h2 Using Databases in Web Applications @tutorial_1093_p There are multiple ways to access a database from within web applications. Here are some examples if you use Tomcat or JBoss. @tutorial_1094_h3 Embedded Mode @tutorial_1095_p The (currently) most simple solution is to use the database in the embedded mode, that means open a connection in your application when it starts (a good solution is using a Servlet Listener, see below), or when a session starts. A database can be accessed from multiple sessions and applications at the same time, as long as they run in the same process. Most Servlet Containers (for example Tomcat) are just using one process, so this is not a problem (unless you run Tomcat in clustered mode). Tomcat uses multiple threads and multiple classloaders. If multiple applications access the same database at the same time, you need to put the database jar in the shared/lib or server/lib directory. It is a good idea to open the database when the web application starts, and close it when the web applications stops. If using multiple applications, only one (any) of them needs to do that. In the application, an idea is to use one connection per Session, or even one connection per request (action). Those connections should be closed after use if possible (but it's not that bad if they don't get closed). @tutorial_1096_h3 Server Mode @tutorial_1097_p The server mode is similar, but it allows you to run the server in another process. @tutorial_1098_h3 Using a Servlet Listener to Start and Stop a Database @tutorial_1099_p Add the h2.jar file your web application, and add the following snippet to your web.xml file (after context-param and before filter): @tutorial_1100_p For details on how to access the database, see the code DbStarter.java @tutorial_1101_h2 CSV (Comma Separated Values) Support @tutorial_1102_p The CSV file support can be used inside the database using the functions CSVREAD and CSVWRITE, and the CSV library can be used outside the database as a standalone tool. @tutorial_1103_h3 Writing a CSV File from Within a Database @tutorial_1104_p The built-in function CSVWRITE can be used to create a CSV file from a query. Example: @tutorial_1105_h3 Reading a CSV File from Within a Database @tutorial_1106_p A CSV file can be read using the function CSVREAD. Example: @tutorial_1107_h3 Writing a CSV File from a Java Application @tutorial_1108_p The CSV tool can be used in a Java application even when not using a database at all. Example: @tutorial_1109_h3 Reading a CSV File from a Java Application @tutorial_1110_p It is possible to read a CSV file without opening a database. Example: @tutorial_1111_h2 Upgrade, Backup, and Restore @tutorial_1112_h3 Database Upgrade @tutorial_1113_p The recommended way to upgrade from one version of the database engine to the next version is to create a backup of the database (in the form of a SQL script) using the old engine, and then execute the SQL script using the new engine. @tutorial_1114_h3 Backup using the Script Tool @tutorial_1115_p There are different ways to backup a database. For example, it is possible to copy the database files. However, this is not recommended while the database is in use. Also, the database files are not human readable and quite large. The recommended way to backup a database is to create a compressed SQL script file. This can be done using the Script tool: @tutorial_1116_p It is also possible to use the SQL command SCRIPT to create the backup of the database. For more information about the options, see the SQL command SCRIPT. The backup can be done remotely, however the file will be created on the server side. The built in FTP server could be used to retrieve the file from the server. @tutorial_1117_h3 Restore from a Script @tutorial_1118_p To restore a database from a SQL script file, you can use the RunScript tool: @tutorial_1119_p For more information about the options, see the SQL command RUNSCRIPT. The restore can be done remotely, however the file needs to be on the server side. The built in FTP server could be used to copy the file to the server. It is also possible to use the SQL command RUNSCRIPT to execute a SQL script. SQL script files may contain references to other script files, in the form of RUNSCRIPT commands. However, when using the server mode, the references script files need to be available on the server side. @tutorial_1120_h3 Online Backup @tutorial_1121_p The BACKUP SQL statement and the Backup tool both create a zip file with all database files. However, the contents of this file are not human readable. Other than the SCRIPT statement, the BACKUP statement does not lock the database objects, and therefore does not block other users. The resulting backup is transactionally consistent: @tutorial_1122_p The Backup tool (org.h2.tools.Backup) can not be used to create a online backup; the database must not be in use while running this program. @tutorial_1123_h2 Using OpenOffice Base @tutorial_1124_p OpenOffice.org Base supports database access over the JDBC API. To connect to a H2 database using OpenOffice Base, you first need to add the JDBC driver to OpenOffice. The steps to connect to a H2 database are: @tutorial_1125_li Stop OpenOffice, including the autostart @tutorial_1126_li Copy h2.jar into the directory <OpenOffice>\program\classes @tutorial_1127_li Start OpenOffice Base @tutorial_1128_li Connect to an existing database, select JDBC, [Next] @tutorial_1129_li Example datasource URL: jdbc:h2:c:/temp/test @tutorial_1130_li JDBC driver class: org.h2.Driver @tutorial_1131_p Now you can access the database stored in the directory C:/temp. @tutorial_1132_h2 Java Web Start / JNLP @tutorial_1133_p When using Java Web Start / JNLP (Java Network Launch Protocol), permissions tags must be set in the .jnlp file, and the application .jar file must be signed. Otherwise, when trying to write to the file system, the following exception will occur: java.security.AccessControlException: access denied (java.io.FilePermission ... read). Example permission tags: @tutorial_1134_h2 Fulltext Search @tutorial_1135_p H2 supports Lucene full text search and native full text search implementation. @tutorial_1136_h3 Using the Native Full Text Search @tutorial_1137_p To initialize, call: @tutorial_1138_p You need to initialize it in each database where you want to use it. Afterwards, you can create a full text index for a table using: @tutorial_1139_p PUBLIC is the schema, TEST is the table name. The list of column names (column separated) is optional, in this case all columns are indexed. The index is updated in read time. To search the index, use the following query: @tutorial_1140_p You can also call the index from within a Java application: @tutorial_1141_h3 Using the Lucene Fulltext Search @tutorial_1142_p To use the Lucene full text search, you need the Lucene library in the classpath. How his is done depends on the application; if you use the H2 Console, you can add the Lucene jar file to the the environment variables H2DRIVERS or CLASSPATH. To initialize the Lucene full text search in a database, call: @tutorial_1143_p You need to initialize it in each database where you want to use it. Afterwards, you can create a full text index for a table using: @tutorial_1144_p PUBLIC is the schema, TEST is the table name. The list of column names (column separated) is optional, in this case all columns are indexed. The index is updated in read time. To search the index, use the following query: @tutorial_1145_p You can also call the index from within a Java application: @tutorial_1146_h2 User Defined Variables @tutorial_1147_p This database supports user defined variables. Variables start with @ and can be used whereever expressions or parameters are used. Variables not persisted and session scoped, that means only visible for the session where they are defined. A value is usually assigned using the SET command: @tutorial_1148_p It is also possible to change a value using the SET() method. This is useful in queries: @tutorial_1149_p Variables that are not set evaluate to NULL. The data type of a user defined variable is the data type of the value assigned to it, that means it is not necessary (or possible) to declare variable names before using them. There are no restrictions on the assigned values, large objects (LOBs) are supported as well.