Snapshot Transactions

At this moment, Exasol supports only one transaction isolation level: SERIALIZABLE.

This is good for data consistency, but it increases the probability of transactional conflicts. For more information, see:

The most common locking problem is related to metadata selects from system views (tables, column, object sizes, etc.). JDBC and ODBC drivers provide special non-blocking calls for common metadata requests: getTables(), getColumns(). But there are no such calls for WebSocket drivers.

The only way to access metadata in a non-blocking manner with PyExasol, is an internal feature called “Snapshot Transactions”. For information, see: * Transaction Management * Snapshot mode