advanced.html 53.4 KB
Newer Older
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<!--
3 4 5
Copyright 2004-2008 H2 Group. Multiple-Licensed under the H2 License, Version 1.0,,
and under the Eclipse Public License, Version 1.0
(http://h2database.com/html/license.html).
6 7
Initial Developer: H2 Group
-->
8 9
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>
10
Advanced Topics
11
</title><link rel="stylesheet" type="text/css" href="stylesheet.css" />
12
<!-- [search] { -->
13 14 15
<script type="text/javascript" src="navigation.js"></script>
</head><body onload="frameMe();">
<table class="content"><tr class="content"><td class="content"><div class="contentDiv">
16
<!-- } -->
17 18

<h1>Advanced Topics</h1>
19
<a href="#result_sets">
20
    Result Sets</a><br />
21
<a href="#large_objects">
22
    Large Objects</a><br />
23
<a href="#linked_tables">
24
    Linked Tables</a><br />
25
<a href="#transaction_isolation">
26
    Transaction Isolation</a><br />
27 28
<a href="#mvcc">
    Multi-Version Concurrency Control (MVCC)</a><br />
29
<a href="#clustering">
30
    Clustering / High Availability</a><br />
31
<a href="#two_phase_commit">
32
    Two Phase Commit</a><br />
33
<a href="#compatibility">
34
    Compatibility</a><br />
35 36
<a href="#standards_compliance">
    Standards Compliance</a><br />
37
<a href="#windows_service">
38
    Run as Windows Service</a><br />
39
<a href="#odbc_driver">
40
    ODBC Driver</a><br />
41 42
<a href="#microsoft_dot_net">
    Using H2 in Microsoft .NET</a><br />
43
<a href="#acid">
44
    ACID</a><br />
45
<a href="#durability_problems">
46
    Durability Problems</a><br />
47
<a href="#using_recover_tool">
48
    Using the Recover Tool</a><br />
49
<a href="#file_locking_protocols">
50
    File Locking Protocols</a><br />
51
<a href="#sql_injection">
52
    Protection against SQL Injection</a><br />
53 54
<a href="#restricting_classes">
    Restricting Class Loading and Usage</a><br />
55
<a href="#security_protocols">
56
    Security Protocols</a><br />
57
<a href="#uuid">
58
    Universally Unique Identifiers (UUID)</a><br />
59
<a href="#system_properties">
60
    Settings Read from System Properties</a><br />
61 62
<a href="#server_bind_address">
    Setting the Server Bind Address</a><br />
63 64
<a href="#limitations">
    Limitations</a><br />
65
<a href="#glossary_links">
66
    Glossary and Links</a><br />
67

68
<br /><a name="result_sets"></a>
69 70 71
<h2>Result Sets</h2>

<h3>Limiting the Number of Rows</h3>
72
<p>
73 74 75 76 77 78
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).
79
</p>
80 81

<h3>Large Result Sets and External Sorting</h3>
82
<p>
83 84
For large result set, the result is buffered to disk. The threshold can be defined using the statement SET MAX_MEMORY_ROWS. 
If ORDER BY is used, the sorting is done using an external sort algorithm. In this case, each block of rows is sorted using
85
quick sort, then written to disk; when reading the data, the blocks are merged together.
86
</p>
87

88
<br /><a name="large_objects"></a>
89 90 91
<h2>Large Objects</h2>

<h3>Storing and Reading Large Objects</h3>
92
<p>
93 94 95 96 97 98 99 100
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.
101
</p>
102

103
<br /><a name="linked_tables"></a>
104
<h2>Linked Tables</h2>
105
<p>
106 107
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:
108
</p>
109 110 111
<pre>
CREATE LINKED TABLE LINK('org.postgresql.Driver', 'jdbc:postgresql:test', 'sa', 'sa', 'TEST');
</pre>
112
<p>
113
It is then possible to access the table in the usual way.
Thomas Mueller's avatar
Thomas Mueller committed
114 115 116 117 118 119 120 121 122 123
Whenever the linked table is accessed, the database issues specific queries over JDBC. 
Using the example above, if you issue the query <code>SELECT * FROM LINK WHERE ID=1</code>, 
then the following query is run against the PostgreSQL database: <code>SELECT * FROM TEST WHERE ID=?</code>.
The same happens for insert and update statements. Only simple statements are executed against the
target database, that means no joins. Prepared statements are used where possible.
</p>
<p>
To view the statements that are executed against the target table, set the trace level to 3.
</p>
<p>
124
There is a restriction when inserting data to this table: When inserting or updating rows into the table,
125
NULL and values that are not set in the insert statement are both inserted as NULL.
126
This may not have the desired effect if a default value in the target table is other than NULL.
127
</p>
128 129 130 131 132 133 134 135 136
<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:
</p>
<pre>
alter system set processes=100 scope=spfile;
alter system set sessions=100 scope=spfile;
</pre>
137

138
<br /><a name="transaction_isolation"></a>
139
<h2>Transaction Isolation</h2>
140 141 142 143
<p>
This database supports the following transaction isolation levels:
</p>
<ul>
144
<li><b>Read Committed</b><br />
145
    This is the default level.
146
    Read locks are released immediately.
147
    Higher concurrency is possible when using this level.<br />
148
    To enable, execute the SQL statement    'SET LOCK_MODE 3'<br />
149
    or append ;LOCK_MODE=3 to the database URL: jdbc:h2:~/test;LOCK_MODE=3
150 151 152 153
</li><li>
<b>Serializable</b><br />
    To enable, execute the SQL statement    'SET LOCK_MODE 1'<br />
    or append ;LOCK_MODE=1 to the database URL: jdbc:h2:~/test;LOCK_MODE=1
154
</li><li><b>Read Uncommitted</b><br />
155 156 157
    This level means that transaction isolation is disabled.<br />
    To enable, execute the SQL statement    'SET LOCK_MODE 0'<br />
    or append ;LOCK_MODE=0 to the database URL: jdbc:h2:~/test;LOCK_MODE=0
158 159 160 161 162
</li>
</ul>
<p>
When using the isolation level 'serializable', dirty reads, non-repeatable reads, and phantom reads are prohibited.
</p>
163
<ul>
164
<li><b>Dirty Reads</b><br />
165 166
    Means a connection can read uncommitted changes made by another connection.<br />
    Possible with: read uncommitted
167
</li><li><b>Non-Repeatable Reads</b><br />
168
    A connection reads a row, another connection changes a row and commits,
169 170
    and the first connection re-reads the same row and gets the new result.<br />
    Possible with: read uncommitted, read committed
171
</li><li><b>Phantom Reads</b><br />
172 173
    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
174
    re-reads using the same condition and gets the new row.<br />
175
    Possible with: read uncommitted, read committed
176 177
</li>
</ul>
178 179

<h3>Table Level Locking</h3>
180
<p>
181
The database allows multiple concurrent connections to the same database.
182
To make sure all connections only see consistent data, table level locking is used by default.
183 184 185 186 187 188 189 190 191 192
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.
193
</p>
194 195

<h3>Lock Timeout</h3>
196
<p>
197 198 199 200 201 202
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.
203
</p>
204

205 206 207
<br /><a name="mvcc"></a>
<h2>Multi-Version Concurrency Control (MVCC)</h2>
<p>
208 209
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
210
shared lock on the table. An exclusive lock is still used when adding or removing columns,
211 212 213 214 215
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
216
database fails fast: a concurrent update exception is thrown.
217 218 219
</p>
<p>
To use the MVCC feature, append MVCC=TRUE to the database URL:
220
</p>
221 222 223
<pre>
jdbc:h2:~/test;MVCC=TRUE
</pre>
224
<p>
225
MVCC can not be used at the same time as MULTI_THREADED.
226 227
The MVCC feature is not fully tested yet.
</p>
228

229
<br /><a name="clustering"></a>
230
<h2>Clustering / High Availability</h2>
231
<p>
232 233 234 235 236 237
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.
238
</p><p>
239 240 241 242
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.
243
</p><p>
244
To initialize the cluster, use the following steps:
245
</p>
246 247
<ul>
<li>Create a database
248
</li><li>Use the CreateCluster tool to copy the database to another location and initialize the clustering.
249
    Afterwards, you have two databases containing the same data.
250 251 252
</li><li>Start two servers (one for each copy of the database)
</li><li>You are now ready to connect to the databases with the client application(s)
</li></ul>
253 254

<h3>Using the CreateCluster Tool</h3>
255
<p>
256 257 258
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.
259
</p>
260 261 262
<ul>
<li>Create two directories: server1 and server2.
    Each directory will simulate a directory on a computer.
263
</li><li>Start a TCP server pointing to the first directory.
264
    You can do this using the command line:
265
<pre>
266 267 268 269
java org.h2.tools.Server
    -tcp -tcpPort 9101
    -baseDir server1
</pre>
270
</li><li>Start a second TCP server pointing to the second directory.
271 272
    This will simulate a server running on a second (redundant) computer.
    You can do this using the command line:
273
<pre>
274 275 276 277
java org.h2.tools.Server
    -tcp -tcpPort 9102
    -baseDir server2
</pre>
278
</li><li>Use the CreateCluster tool to initialize clustering.
279 280
    This will automatically create a new, empty database if it does not exist.
    Run the tool on the command line:
281
<pre>
282
java org.h2.tools.CreateCluster
283 284
  -urlSource jdbc:h2:tcp://localhost:9101/~/test
  -urlTarget jdbc:h2:tcp://localhost:9102/~/test
285
  -user sa
286
  -serverList localhost:9101,localhost:9102
287
</pre>
288
</li><li>You can now connect to the databases using
289
an application or the H2 Console using the JDBC URL
290
jdbc:h2:tcp://localhost:9101,localhost:9102/~/test
291
</li><li>If you stop a server (by killing the process),
292 293
you will notice that the other machine continues to work,
and therefore the database is still accessible.
294
</li><li>To restore the cluster, you first need to delete the
295 296
database that failed, then restart the server that was stopped,
and re-run the CreateCluster tool.
297
</li></ul>
298

299
<h3>Clustering Algorithm and Limitations</h3>
300
<p>
301 302 303 304 305 306 307
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.
308
</p>
309

310
<br /><a name="two_phase_commit"></a>
311
<h2>Two Phase Commit</h2>
312
<p>
313
The two phase commit protocol is supported. 2-phase-commit works as follows:
314
</p>
315 316
<ul>
<li>Autocommit needs to be switched off
317 318
</li><li>A transaction is started, for example by inserting a row
</li><li>The transaction is marked 'prepared' by executing the SQL statement
319 320
    <code>PREPARE COMMIT transactionName</code>
</li><li>The transaction can now be committed or rolled back
321
</li><li>If a problem occurs before the transaction was successfully committed or rolled back
322
    (for example because a network problem occurred), the transaction is in the state 'in-doubt'
323
</li><li>When re-connecting to the database, the in-doubt transactions can be listed
324 325 326
    with <code>SELECT * FROM INFORMATION_SCHEMA.IN_DOUBT</code>
</li><li>Each transaction in this list must now be committed or rolled back by executing
    <code>COMMIT TRANSACTION transactionName</code> or
327
    <code>ROLLBACK TRANSACTION transactionName</code>
328
</li><li>The database needs to be closed and re-opened to apply the changes
329
</li></ul>
330

331
<br /><a name="compatibility"></a>
332
<h2>Compatibility</h2>
333
<p>
334 335
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.
336
</p>
337 338

<h3>Transaction Commit when Autocommit is On</h3>
339
<p>
340 341 342
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.
343
</p>
344 345

<h3>Keywords / Reserved Words</h3>
346
<p>
347 348
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:
349
</p><p>
350 351 352
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
353
</p><p>
354 355
Certain words of this list are keywords because they are functions that can be used without '()' for compatibility,
for example CURRENT_TIMESTAMP.
356
</p>
357

358 359 360 361 362 363 364 365 366
<br /><a name="standards_compliance"></a>
<h2>Standards Compliance</h2>
<p>
This database tries to be as much standard compliant as possible. For the SQL language, ANSI/ISO is the main 
standard. There are several versions that refer to the release date: SQL-92, SQL:1999, and SQL:2003.
Unfortunately, the standard documentation is not freely available. Another problem is that important features 
are not standardized. Whenever this is the case, this database tries to be compatible to other databases.
</p>

367
<br /><a name="windows_service"></a>
368
<h2>Run as Windows Service</h2>
369
<p>
370
Using a native wrapper / adapter, Java applications can be run as a Windows Service.
371 372 373 374 375
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.
376
</p>
377 378

<h3>Install the Service</h3>
379
<p>
380
The service needs to be registered as a Windows Service first.
381
To do that, double click on 1_install_service.bat.
382
If successful, a command prompt window will pop up and disappear immediately. If not, a message will appear.
383
</p>
384 385

<h3>Start the Service</h3>
386
<p>
387
You can start the H2 Database Engine Service using the service manager of Windows,
388
or by double clicking on 2_start_service.bat.
389
Please note that the batch file does not print an error message if the service is not installed.
390
</p>
391 392

<h3>Connect to the H2 Console</h3>
393
<p>
394 395 396
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.
397
</p>
398 399

<h3>Stop the Service</h3>
400
<p>
401 402
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.
403
</p>
404 405

<h3>Uninstall the Service</h3>
406
<p>
407 408
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.
409
</p>
410

411
<br /><a name="odbc_driver"></a>
412
<h2>ODBC Driver</h2>
413
<p>
414
This database does not come with its own ODBC driver at this time,
415 416 417 418
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.
419
</p>
420 421 422 423 424
<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>
</p>
425 426

<h3>ODBC Installation</h3>
427
<p>
428
First, the ODBC driver must be installed.
429
Any recent PostgreSQL ODBC driver should work, however version 8.2 (psqlodbc-08_02*) or newer is recommended.
430 431
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>.
432
</p>
433

434 435 436
<h3>Starting the Server</h3>
<p>
After installing the ODBC driver, start the H2 Server using the command line:
437
</p>
438 439 440
<pre>
java -cp h2.jar org.h2.tools.Server
</pre>
441
<p>
442 443 444
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:
445
</p>
446 447
<pre>
java -cp h2.jar org.h2.tools.Server -baseDir ~
448
</pre>
449
<p>
450
The PG server can be started and stopped from within a Java application as follows:
451
</p>
452 453 454 455
<pre>
Server server = Server.createPgServer(new String[]{"-baseDir", "~"});
server.start();
...
456
server.stop();
457
</pre>
458
<p>
459 460 461 462 463 464
By default, only connections from localhost are allowed. To allow remote connections, use
<code>-pgAllowOthers true</code> when starting the server.
</p>

<h3>ODBC Configuration</h3>
<p>
465
After installing the driver, a new Data Source must be added. In Windows,
466 467 468 469 470
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:
</p>
<table>
471
<tr><th>Property</th><th>Example</th><th>Remarks</th></tr>
472 473
<tr><td>Data Source</td><td>H2 Test</td><td>The name of the ODBC Data Source</td></tr>
<tr><td>Database</td><td>test</td>
474 475 476 477 478 479 480
    <td>
        The database name. Only simple names are supported at this time; <br />
        relative or absolute path are not supported in the database name. <br />
        By default, the database is stored in the current working directory <br />
        where the Server is started except when the -baseDir setting is used. <br />
        The name must be at least 3 characters.
    </td></tr>
481 482 483 484 485 486 487 488 489 490 491 492
<tr><td>Server</td><td>localhost</td><td>The server name or IP address.<br />By default, only remote connections are allowed</td></tr>
<tr><td>User Name</td><td>sa</td><td>The database user name.</td></tr>
<tr><td>SSL Mode</td><td>disabled</td><td>At this time, SSL is not supported.</td></tr>
<tr><td>Port</td><td>5435</td><td>The port where the PG Server is listening.</td></tr>
<tr><td>Password</td><td>sa</td><td>The database password.</td></tr>
</table>
<p>
Afterwards, you may use this data source.
</p>

<h3>PG Protocol Support Limitations</h3>
<p>
493
At this time, only a subset of the PostgreSQL network protocol is implemented.
494 495
Also, there may be compatibility problems on the SQL level, with the catalog, or with text encoding.
Problems are fixed as they are found.
496
Currently, statements can not be canceled when using the PG protocol.
497
</p>
498
<p>
499
PostgreSQL ODBC Driver Setup requires a database password; that means it
500 501 502
is not possible to connect to H2 databases without password. This is a limitation
of the ODBC driver.
</p>
503 504

<h3>Security Considerations</h3>
505
<p>
506 507
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
508 509 510
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.
511
</p>
512

513 514 515
<br /><a name="microsoft_dot_net"></a>
<h2>Using H2 in Microsoft .NET</h2>
<p>
516 517
The database can be used from Microsoft .NET even without using Java, by using IKVM.NET.
You can access a H2 database on .NET using the JDBC API, or using the ADO.NET interface.
518
</p>
519 520 521 522 523 524 525 526

<h3>Using the ADO.NET API on .NET</h3>
<p>
An implementation of the ADO.NET interface is available in the open source project
<a href="http://code.google.com/p/h2sharp">H2Sharp</a>.
</p>

<h3>Using the JDBC API on .NET</h3>
527 528 529 530 531 532 533 534 535 536
<ul><li>Install the .NET Framework from <a href="http://www.microsoft.com">Microsoft</a>.
    Mono has not yet been tested.
</li><li>Install <a href="http://www.ikvm.net">IKVM.NET</a>.
</li><li>Copy the h2.jar file to ikvm/bin
</li><li>Run the H2 Console using:
    <code>ikvm -jar h2.jar</code>
</li><li>Convert the H2 Console to an .exe file using:
    <code>ikvmc -target:winexe h2.jar</code>.
    You may ignore the warnings.
</li><li>Create a .dll file using (change the version accordingly):
537
    <code>ikvmc.exe -target:library -version:1.0.69.0 h2.jar</code>
538 539 540
</li></ul>
<p>
If you want your C# application use H2, you need to add the h2.dll and the 
541
IKVM.OpenJDK.ClassLibrary.dll to your C# solution. Here some sample code:
542
</p>
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
<pre>
using System;
using java.sql;

class Test
{
    static public void Main()
    {
        org.h2.Driver.load();
        Connection conn = DriverManager.getConnection("jdbc:h2:~/test", "sa", "sa");
        Statement stat = conn.createStatement();
        ResultSet rs = stat.executeQuery("SELECT 'Hello World'");
        while (rs.next())
        {
            Console.WriteLine(rs.getString(1));
        }
    }
} 
</pre>
562

563
<br /><a name="acid"></a>
564
<h2>ACID</h2>
565
<p>
566
In the database world, ACID stands for:
567
</p>
568
<ul>
569
<li>Atomicity: Transactions must be atomic, meaning either all tasks are performed or none.
570
</li><li>Consistency: All operations must comply with the defined constraints.
571
</li><li>Isolation: Transactions must be isolated from each other.
572
</li><li>Durability: Committed transaction will not be lost.
573
</li></ul>
574 575

<h3>Atomicity</h3>
576
<p>
577
Transactions in this database are always atomic.
578
</p>
579 580

<h3>Consistency</h3>
581
<p>
582 583
This database is always in a consistent state.
Referential integrity rules are always enforced.
584
</p>
585 586

<h3>Isolation</h3>
587
<p>
588
For H2, as with most other database systems, the default isolation level is 'read committed'.
589 590
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'.
591
</p>
592 593

<h3>Durability</h3>
594
<p>
595
This database does not guarantee that all committed transactions survive a power failure.
596
Tests show that all databases sometimes lose transactions on power failure (for details, see below).
597 598
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,
599
such as the H2 clustering mode.
600
</p>
601

602 603
<br /><a name="durability_problems"></a>
<h2>Durability Problems</h2>
604 605
<p>
Complete durability means all committed transaction survive a power failure.
606
Some databases claim they can guarantee durability, but such claims are wrong.
607
A durability test was run against H2, HSQLDB, PostgreSQL, and Derby.
608
All of those databases sometimes lose committed transactions.
609
The test is included in the H2 download, see org.h2.test.poweroff.Test.
610 611
</p>

612 613
<h3>Ways to (Not) Achieve Durability</h3>
<p>
614
Making sure that committed transactions are not lost is more complicated than it seems first.
615
To guarantee complete durability, a database must ensure that the log record is on the hard drive
616
before the commit call returns. To do that, databases use different methods. One
617 618
is to use the 'synchronous write' file access mode. In Java, RandomAccessFile
supports the modes "rws" and "rwd":
619 620
</p>
<ul>
621
<li>rwd: Every update to the file's content is written synchronously to the underlying storage device.
622
</li><li>rws: In addition to rwd, every update to the metadata is written synchronously.</li>
623 624
</ul>
<p>
625 626
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.
627
Even when the operating system write buffer is disabled, the write rate is around 50 thousand operations per second.
628
This feature does not force changes to disk because it does not flush all buffers.
629
The test updates the same byte in the file again and again. If the hard drive was able to write at this rate,
630
then the disk would need to make at least 50 thousand revolutions per second, or 3 million RPM
631
(revolutions per minute). There are no such hard drives. The hard drive used for the test is about 7200 RPM,
632
or about 120 revolutions per second. There is an overhead, so the maximum write rate must be lower than that.
633 634
</p>
<p>
635
Calling fsync flushes the buffers. There are two ways to do that in Java:
636
</p>
637
<ul>
638
<li>FileDescriptor.sync(). The documentation says that this forces all system buffers to synchronize with the underlying device.
639
Sync is supposed to return after all in-memory modified copies of buffers associated with this FileDescriptor
640
have been written to the physical medium.
641
</li><li>FileChannel.force() (since JDK 1.4). This method is supposed to force any updates to this channel's file
642
to be written to the storage device that contains it.
643
</li></ul>
644
<p>
645
By default, MySQL calls fsync for each commit. When using one of those methods, only around 60 write operations
646
per second can be achieved, which is consistent with the RPM rate of the hard drive used.
647
Unfortunately, even when calling FileDescriptor.sync() or FileChannel.force(),
648
data is not always persisted to the hard drive, because most hard drives do not obey
649 650
fsync(): see 
<a href="http://hardware.slashdot.org/article.pl?sid=05/05/13/0529252">Your Hard Drive Lies to You</a>.
651
In Mac OS X, fsync does not flush hard drive buffers. See
652
<a href="http://lists.apple.com/archives/darwin-dev/2005/Feb/msg00072.html">Bad fsync?</a>.
653 654 655 656 657 658 659 660
So the situation is confusing, and tests prove there is a problem.
</p>
<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.
661 662
</p>
<p>
663 664
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.
665
Most other databases support commit delay as well.
666
In the performance comparison, commit delay was used for all databases that support it.
667
</p>
668

669
<h3>Running the Durability Test</h3>
670
<p>
671 672
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.
673
One computer just listens, while the test application is run (and power is cut) on the other computer.
674 675 676 677
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.
678 679 680
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
681
consult the source code of the listener and test application.
682
</p>
683

684
<br /><a name="using_recover_tool"></a>
685
<h2>Using the Recover Tool</h2>
686
<p>
687 688 689
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:
690
</p>
691 692 693
<pre>
java org.h2.tools.Recover
</pre>
694
<p>
695 696 697 698
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.
699
</p>
700

701
<br /><a name="file_locking_protocols"></a>
702
<h2>File Locking Protocols</h2>
703
<p>
704 705 706
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.
707
</p><p>
708 709 710 711 712 713 714 715
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'.
716
</p>
717 718

<h3>File Locking Method 'File'</h3>
719
<p>
720
The default method for database file locking is the 'File Method'. The algorithm is:
721
</p>
722 723 724 725 726 727
<ul>
<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.
728
</li><li>
729 730 731 732 733 734 735 736
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.
737
</li><li>
738 739 740 741 742 743 744 745 746
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.
747
</li></ul>
748 749 750 751 752 753 754
<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.
755
</p>
756 757

<h3>File Locking Method 'Socket'</h3>
758
<p>
759 760
There is a second locking mechanism implemented, but disabled by default.
The algorithm is:
761
</p>
762 763 764 765 766
<ul>
<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.
767
</li><li>If the lock file exists, and the lock method is 'file', then the software switches
768
to the 'file' method.
769
</li><li>If the lock file exists, and the lock method is 'socket', then the process
770 771 772 773
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.
774
</li></ul>
775
<p>
776 777 778 779
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.
780
</p>
781

782
<br /><a name="sql_injection"></a>
783 784
<h2>Protection against SQL Injection</h2>
<h3>What is SQL Injection</h3>
785
<p>
786 787
This database engine provides a solution for the security vulnerability known as 'SQL Injection'.
Here is a short description of what SQL injection means.
788
Some applications build SQL statements with embedded user input such as:
789
</p>
790 791 792 793
<pre>
String sql = "SELECT * FROM USERS WHERE PASSWORD='"+pwd+"'";
ResultSet rs = conn.createStatement().executeQuery(sql);
</pre>
794
<p>
795
If this mechanism is used anywhere in the application, and user input is not correctly filtered or encoded,
796
it is possible for a user to inject SQL functionality or statements by using specially built input
797
such as (in this example) this password: ' OR ''='. In this case the statement becomes:
798
</p>
799 800 801
<pre>
SELECT * FROM USERS WHERE PASSWORD='' OR ''='';
</pre>
802
<p>
803
Which is always true no matter what the password stored in the database is.
804
For more information about SQL Injection, see Glossary and Links.
805
</p>
806 807

<h3>Disabling Literals</h3>
808
<p>
809 810
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:
811
</p>
812 813 814 815 816 817
<pre>
String sql = "SELECT * FROM USERS WHERE PASSWORD=?";
PreparedStatement prep = conn.prepareStatement(sql);
prep.setString(1, pwd);
ResultSet rs = prep.executeQuery();
</pre>
818
<p>
819 820 821
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:
822
</p>
823 824 825
<pre>
SET ALLOW_LITERALS NONE;
</pre>
826
<p>
827 828 829 830 831 832 833 834
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.
835
</p>
836 837

<h3>Using Constants</h3>
838
<p>
839
Disabling literals also means disabling hard-coded 'constant' literals. This database supports
840
defining constants using the CREATE CONSTANT command. Constants can be defined only
841 842
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:
843
</p>
844 845 846 847 848 849
<pre>
CREATE SCHEMA CONST AUTHORIZATION SA;
CREATE CONSTANT CONST.ACTIVE VALUE 'Active';
CREATE CONSTANT CONST.INACTIVE VALUE 'Inactive';
SELECT * FROM USERS WHERE TYPE=CONST.ACTIVE;
</pre>
850
<p>
851 852 853
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.
854
</p>
855 856

<h3>Using the ZERO() Function</h3>
857
<p>
858
It is not required to create a constant for the number 0 as there is already a built-in function ZERO():
859
</p>
860 861 862 863
<pre>
SELECT * FROM USERS WHERE LENGTH(PASSWORD)=ZERO();
</pre>

864 865 866 867 868
<br /><a name="restricting_classes"></a>
<h2>Restricting Class Loading and Usage</h2>
<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:
869
</p>
870 871 872 873 874 875
<pre>
CREATE ALIAS SET_PROPERTY FOR "java.lang.System.setProperty";
CALL SET_PROPERTY('abc', '1');
CREATE ALIAS GET_PROPERTY FOR "java.lang.System.getProperty";
CALL GET_PROPERTY('abc');
</pre>
876
<p>
877 878 879 880
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:
881
</p>
882 883 884
<pre>
java -Dh2.allowedClasses=java.lang.Math,com.acme.*
</pre>
885
<p>
886
This mechanism is used for all user classes, including database event listeners,
887
trigger classes, user-defined functions, user-defined aggregate functions, and JDBC
888 889 890
driver classes (with the exception of the H2 driver) when using the H2 Console.
</p>

891
<br /><a name="security_protocols"></a>
892
<h2>Security Protocols</h2>
893
<p>
894 895 896
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.
897
</p>
898 899

<h3>User Password Encryption</h3>
900
<p>
901 902 903 904 905 906 907 908 909 910 911
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.
912
</p><p>
913 914 915 916
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.
917
</p><p>
918 919 920 921 922 923 924 925 926 927 928
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.
929
</p>
930 931

<h3>File Encryption</h3>
932
<p>
933 934 935 936
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.
937
</p><p>
938 939 940
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.
941
</p><p>
942 943 944 945 946
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.
947
</p><p>
948 949 950 951 952
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.
953
</p><p>
954 955 956 957
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.
958
</p><p>
959 960
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.
961
</p><p>
962
Therefore, the block cipher mode of operation is CBC (Cipher-block chaining), but each chain
963 964 965
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.
966 967
</p><p>
Database encryption is meant for securing the database while it is not in use (stolen laptop and so on).
968 969
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
970 971
and manipulate data like this.
</p><p>
972
File encryption slows down the performance of the database engine. Compared to unencrypted mode,
973
database operations take about 2.2 times longer when using XTEA, and 2.5 times longer using AES (embedded mode).
974
</p>
975

976 977 978 979 980 981 982 983 984 985 986 987 988
<h3>Wrong Password Delay</h3>
<p>
To protect against remote brute force password attacks, the delay after each unsuccessful 
login gets double as long. Use the system properties h2.delayWrongPasswordMin
and h2.delayWrongPasswordMax to change the minimum (the default is 250 milliseconds) 
or maximum delay (the default is 4000 milliseconds, or 4 seconds). The delay only 
applies for those using the wrong password. Normally there is no delay for a user that knows the correct 
password, with one exception: after using the wrong password, there is a delay of up (randomly distributed) 
the same delay as for a wrong password. This is to protect against parallel brute force attacks,
so that an attacker needs to wait for the whole delay. Delays are synchronized. This is also required 
to protect against parallel attacks.
</p>

989
<h3>SSL/TLS Connections</h3>
990
<p>
991 992 993
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>.
994
</p>
995 996 997 998 999 1000 1001 1002 1003 1004
<p>
To use your own keystore, set the system properties <code>javax.net.ssl.keyStore</code> and 
<code>javax.net.ssl.keyStorePassword</code> before starting the H2 server and client. 
See also <a href="http://java.sun.com/javase/6/docs/technotes/guides/security/jsse/JSSERefGuide.html#CustomizingStores">
Customizing the Default Key and Trust Stores, Store Types, and Store Passwords</a>
for more information.
</p>
<p>
To disable anonymous SSL, set the system property <code>h2.enableAnonymousSSL</code> to false.
</p>
1005 1006

<h3>HTTPS Connections</h3>
1007
<p>
1008 1009 1010
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.
1011
</p>
1012

1013
<br /><a name="uuid"></a>
1014
<h2>Universally Unique Identifiers (UUID)</h2>
1015
<p>
1016
This database supports the UUIDs. Also supported is a function to create new UUIDs using
1017 1018 1019
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'.
1020
Standardized randomly generated UUIDs have 122 random bits.
1021 1022
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().
1023
Here is a small program to estimate the probability of having two identical UUIDs
1024
after generating a number of values:
1025
</p>
1026 1027
<pre>
double x = Math.pow(2, 122);
1028
for(int i=35; i&lt;62; i++) {
1029 1030
    double n = Math.pow(2, i);
    double p = 1 - Math.exp(-(n*n)/(2*x));
1031
    String ps = String.valueOf(1+p).substring(1);
1032
    System.out.println("2^"+i+"="+(1L&lt;&lt;i)+" probability: 0"+ps);
1033
}
1034
</pre>
1035
<p>
1036
Some values are:
1037
</p>
1038 1039 1040 1041 1042
<pre>
2^36=68'719'476'736 probability: 0.000'000'000'000'000'4
2^41=2'199'023'255'552 probability: 0.000'000'000'000'4
2^46=70'368'744'177'664 probability: 0.000'000'000'4
</pre>
1043
<p>
1044 1045
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,
1046
that means the probability is about 0.000'000'000'06.
1047
</p>
1048

1049
<br /><a name="system_properties"></a>
1050
<h2>Settings Read from System Properties</h2>
1051 1052 1053
<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.
1054
The settings are case sensitive.
1055
Example:
1056
</p>
1057 1058 1059
<pre>
java -Dh2.serverCachedObjects=256 org.h2.tools.Server
</pre>
1060
<p>
1061
The current value of the settings can be read in the table
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
INFORMATION_SCHEMA.SETTINGS.
</p>
<p>
For a complete list of settings, see
<a href="../javadoc/org/h2/constant/SysProperties.html">SysProperties</a>.
</p>

<br /><a name="server_bind_address"></a>
<h2>Setting the Server Bind Address</h2>
<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.
</p>
1078

1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
<br /><a name="limitations"></a>
<h2>Limitations</h2>
<p>
This database has the following known limitations:
</p>
<ul>
<li>The maximum file size is currently 256 GB for the data, and 256 GB for the index.
This number is excluding BLOB and CLOB data:
Every CLOB or BLOB can be up to 256 GB as well.
</li><li>The maximum file size for FAT or FAT32 file systems is 4 GB. That means when using FAT or FAT32, 
the limit is 4 GB for the data. This is the limitation of the file system, and this database does not provide a 
workaround for this problem. The suggested solution is to use another file system.
</li><li>There is a limit on the complexity of SQL statements.
Statements of the following form will result in a stack overflow exception:
<pre>
SELECT * FROM DUAL WHERE X = 1 
OR X = 2 OR X = 2 OR X = 2 OR X = 2 OR X = 2 
-- repeat previous line 500 times --
</pre>
</li><li>There is no limit for the following entities, except the memory and storage capacity: 
Thomas Mueller's avatar
Thomas Mueller committed
1099 1100 1101
    maximum identifier length, maximum number of tables, maximum number of columns, 
    maximum number of indexes, maximum number of parameters, 
    maximum number of triggers, and maximum number of other database objects.
1102
</li><li>For limitations on data types, see the documentation of the respective Java data type 
Thomas Mueller's avatar
Thomas Mueller committed
1103 1104
    or the data type documentation of this database.
</li></ul>
1105
    
1106
<br /><a name="glossary_links"></a>
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
<h2>Glossary and Links</h2>
<table><tr><th>Term</th><th>Description</th></tr>
<tr>
  <td>AES-128</td>
  <td>
    A block encryption algorithm. See also:
    <a href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard">Wikipedia: AES</a>
  </td>
</tr>
<tr>
  <td>Birthday Paradox</td>
  <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>
  </td>
</tr>
<tr>
  <td>Digest</td>
  <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>
  </td>
</tr>
<tr>
  <td>GCJ</td>
  <td>
    GNU Compiler for Java.
1135
    <a href="http://gcc.gnu.org/java/">http://gcc.gnu.org/java/</a> and
1136
    <a href="http://nativej.mtsystems.ch">http://nativej.mtsystems.ch/ (not free any more)</a>
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201
  </td>
</tr>
<tr>
  <td>HTTPS</td>
  <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>
  </td>
</tr>
<tr>
  <td>Modes of Operation</td>
  <td>
  <a href="http://en.wikipedia.org/wiki/Block_cipher_modes_of_operation">Wikipedia: Block cipher modes of operation</a>
  </td>
</tr>
<tr>
  <td>Salt</td>
  <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>
  </td>
</tr>
<tr>
  <td>SHA-256</td>
  <td>
      A cryptographic one-way hash function.
      See also:
    <a href="http://en.wikipedia.org/wiki/SHA_family">Wikipedia: SHA hash functions</a>
  </td>
</tr>
<tr>
  <td>SQL Injection</td>
  <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>
  </td>
</tr>
<tr>
  <td>Watermark Attack</td>
  <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'
  </td>
</tr>
<tr>
  <td>SSL/TLS</td>
  <td>
    Secure Sockets Layer / Transport Layer Security.
    See also:
      <a href="http://java.sun.com/products/jsse/">Java Secure Socket Extension (JSSE)</a>
  </td>
</tr>
<tr>
  <td>XTEA</td>
  <td>
    A block encryption algorithm.
      See also:
    <a href="http://en.wikipedia.org/wiki/XTEA">Wikipedia: XTEA</a>
  </td>
</tr>
</table>

1202
<!-- [close] { --></div></td></tr></table><!-- } --><!-- analytics --></body></html>