Hitachi

Hitachi Advanced Database Setup and Operation Guide


2.10.7 Examples of locks

This section shows examples of locks performed by HADB.

To understand the mechanism of locks, read also 2.10.2 Locked resources and 2.10.4 Locked resources that are reserved and their lock modes.

Organization of this subsection

(1) Locks performed when the CREATE TABLE statement is executed (to define a base table)

When the CREATE TABLE statement is executed, the following resources are locked:

Dictionaries are locked in exclusive mode (EX). Therefore, a definition SQL statement that is executed subsequently to a CREATE TABLE statement is placed in a wait state until execution of the CREATE TABLE statement finishes. Also, dictionary tables are locked in exclusive mode (EX). Therefore, a retrieval or update SQL statement that is executed subsequently to a CREATE TABLE statement will be placed in a wait state until execution of the CREATE TABLE statement finishes.

The following shows examples of cases where a retrieval SQL statement (SELECT statement) that is executed subsequently to a CREATE TABLE statement is placed in a wait state:

Example 1: When the SELECT statement is executed for a base table that is being defined
CREATE TABLE T1("ID" INT, "NAME" VARCHAR(100)) in ADBUTBL01   ... 1
SELECT * FROM T1                                              ... 2

The SELECT statement on line 2 is placed in a wait state until execution of the CREATE TABLE statement on line 1 finishes.

Example 2: When the SELECT statement is executed for a base table that is not a base table being defined
CREATE TABLE T1("ID" INT, "NAME" VARCHAR(100)) in ADBUTBL01   ... 1
SELECT * FROM T2                                              ... 2

Note: In this example, base table T2 is defined in a data DB area in which base table T1 is not defined.

The SELECT statement on line 2 is placed in a wait state until execution of the CREATE TABLE statement on line 1 finishes.

In addition to retrieval SQL statements, there are some operations which, if executed subsequently to a CREATE TABLE statement, are placed in a wait state until execution of the CREATE TABLE statement finishes. The following shows examples of operations that are placed in a wait state (other than retrieval SQL statements) when they are executed subsequently:

(2) Locks performed when the adbimport command is executed (to import data)

The processing of locks performed when the adbimport command is executed differs depending on whether the background-import facility to be used.

(a) Locks performed when the background-import facility is used

If the background-import facility is used and the adbimport command is executed, the data DB area is locked in protected update mode (PU). Therefore, the update operations that are subsequently executed for the import-target table will result in an error when attempting to reserve already locked resources.

The following shows examples of operations# that result in an error when they are executed subsequently to the adbimport command if the background-import facility is used:

  • Definition SQL statements

  • INSERT statement

  • UPDATE statement

  • DELETE statement

  • TRUNCATE TABLE statement

  • PURGE CHUNK statement

  • adbdbstatus command

    Note that the adbdbstatus command can be executed in the following cases:

    • When summary information for DB areas is output

    • When information is output by specifying the --shared-lock option

    • When information about the need for reorganization is output

  • adbmergechunk command

#

Operations that meet any of the following conditions:

  • The operation-target table of the SQL statement or command is the same as the import-target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the import-target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the index defined for the import-target table.

  • The index defined for the operation-target table of the SQL statement or command is stored in the same data DB area as the import-target table.

(b) Locks performed when the background-import facility is not used

When the adbimport command is executed without using the background-import facility, the data DB area and processing-target table are locked in exclusive mode (EX). Therefore, operations for the import-target table will result in an error when attempting to reserve already locked resources or will be placed in a wait state until the necessary resource is unlocked.

■ Operations that will result in an error when executed subsequently

The following shows examples of operations# that result in an error when they are executed subsequently to the adbimport command if the background-import facility is not used:

  • Definition SQL statements

  • INSERT statement

  • UPDATE statement

  • DELETE statement

  • TRUNCATE TABLE statement

  • PURGE CHUNK statement

  • adbdbstatus command

    Note that the adbdbstatus command can start without waiting in the following cases:

    • When summary information for DB areas is output

    • When information is output by specifying the --shared-lock option

    • When information about the need for reorganization is output

  • adbmergechunk command

#

Operations that meet any of the following conditions:

  • The operation-target table of the SQL statement or command is the same as the import-target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the import-target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the index defined for the import-target table.

  • The index defined for the operation-target table of the SQL statement or command is stored in the same data DB area as the import-target table.

■ Operations that will be placed in a wait state when executed subsequently

The following shows examples of operations that will be placed in a wait state when they are executed subsequently to the adbimport command if the background-import facility is not used:

  • Retrieval SQL statements

  • adbexport command

Note

The preceding operations can start without waiting when they are executed for a table other than the import-target table (these operations are not affected by a lock on the data DB area).

(3) Locks performed when the adbexport command is executed (to export data)

When the adbexport command is executed, the following resources are locked in shared retrieval mode (SR):

Therefore, you can execute any operations (other than those that lock the preceding resources) in exclusive mode (EX) simultaneously with the adbexport command. Operations that lock the preceding resources in exclusive mode (EX) will result in an error when attempting to lock a resource or will be placed in a wait state until the necessary resource is unlocked.

■ Operations that will result in an error when they are executed subsequently for the export-target table

The following shows examples of operations that will result in an error when they are executed subsequently to the adbexport command for the export-target table:

Note

The preceding operations can start without resulting in an error when they are executed for a table other than the export-target table (these operations are not affected by a lock on the data DB area).

■ Operations that will be placed in a wait state when they are executed subsequently for the export-target table

The following shows examples of operations that are placed in a wait state when they are executed subsequently to the adbexport command for the export-target table:

Note

The preceding operations can start without waiting when they are executed for a table other than the export-target table (these operations are not affected by a lock on the data DB area).

(4) Locks performed when the adbmergechunk command is executed (to merge chunks)

When the adbmergechunk command is executed, the following resources are locked:

Therefore, the following operations will result in an error when they are executed subsequently and attempt to reserve already locked resources:

The following shows examples of operations# that result in an error when they are executed subsequently to the adbmergechunk command:

#

Operations that meet any of the following conditions:

  • The operation-target table of the SQL statement or command is the same as the merge chunk target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the merge chunk target table.

  • The operation-target table of the SQL statement or command is stored in the same data DB area as the index defined for the merge chunk target table.

  • The index defined for the operation-target table of the SQL statement or command is stored in the same data DB area as the merge chunk target table.

(5) Locks performed when the adbdbstatus command is executed (to analyze the database status)

The processing of locks performed when the adbdbstatus command is executed differs depending on the information that will be output.

(a) Locks performed when summary information about a DB area is output

When the adbdbstatus command is used to output summary information about a DB area, a single connection and dictionary table are locked in shared retrieval mode (SR). Therefore, operations that lock the dictionary table in exclusive mode (EX) will result in an error when they are executed subsequently and attempt to reserve already locked resources.

The following shows examples of operations that will result in an error when they are executed subsequently to the adbdbstatus command:

  • Definition SQL statements

(b) Locks performed when information is output by specifying the --shared-lock option and when information about the need for reorganization is output

When the adbdbstatus command with the --shared-lock option specified outputs information or when the adbdbstatus command outputs information about the need for reorganization, the following resources are locked in shared retrieval mode (SR):

  • Single connection

  • Pre-processing table

  • Table

    • Processing-target table

    • Dictionary table

Therefore, operations that lock the preceding resources in exclusive mode (EX) will result in an error when they are executed subsequently and attempt to reserve already locked resources.

The following shows examples of operations that will result in an error when they are executed subsequently to the adbdbstatus command:

  • Definition SQL statements

  • TRUNCATE TABLE statement

  • PURGE CHUNK statement

  • adbimport command for which the background-import facility is disabled

(c) Locks performed when other types of information is output

In cases where neither (a) Locks performed when summary information about a DB area is output nor (b) Locks performed when information is output by specifying the --shared-lock option and when information about the need for reorganization is output applies, the following resources are locked:

  • Single connection (shared retrieval mode (SR))

  • Pre-processing table (shared retrieval mode (SR))

  • DB area

    • Data DB area (exclusive mode (EX))

    • Dictionary DB area (exclusive mode (EX))

    • System-table DB area (exclusive mode (EX))

  • Table

    • Dictionary table (shared retrieval mode (SR))

Therefore, operations that lock the data DB area, dictionary DB area, or system-table DB area will result in an error when they are executed subsequently and attempt to reserve already locked resources. In addition, operations that lock a single connection, pre-processing table, or dictionary table in exclusive mode (EX) will also result in an error when they are executed subsequently.

The following shows examples of operations that will result in an error when they are executed subsequently to the adbdbstatus command:

  • Definition SQL statements

  • INSERT statement

  • UPDATE statement

  • DELETE statement

  • TRUNCATE TABLE statement

  • PURGE CHUNK statement

  • adbimport command

  • adbmergechunk command

(6) Locks performed when the adbmodarea command is executed (to add or change a DB area)

When the adbmodarea command is executed, a single connection is locked in exclusive mode (EX). Therefore, all operations that lock a single connection (operations for connecting to the HADB server) will result in an error during execution of the adbmodarea command.

The following shows examples of operations that will result in an error when they are executed subsequently to the adbmodarea command:

#

The SQL statement cannot be executed because an error occurs when the application program connects to the HADB server.

(7) Locks performed when the adbls command is executed (to display the status of the HADB server)

The adbls command does not lock any resources. Therefore, this command can be executed simultaneously with operations that lock resources.