Chapter Contents |
Previous |
Next |
UPDATE_ISOLATION_LEVEL= |
Default value: | None |
Syntax | |
Details |
Syntax |
UPDATE_ISOLATION_LEVEL= ACCESS|READ|WRITE |
Effect: prevents other users from being granted a WRITE or EXCLUSIVE lock.
Effect: Prevents other users from obtaining any lock but ACCESS.
Details |
The READ value locks the entire table or view, allowing other users to acquire READ locks. The READ value can lead to deadlock situations.
The WRITE value prevents other users, except those with ACCESS locks, from accessing the table. Although a WRITE value prevents the possibility of a deadlock, it limits concurrent use of the table.
Avoid an ACCESS lock for update if there is a possibility that a different user might update the table at the same time. In this situation, the data can be corrupted.
Use SAS/ACCESS locking options only when Teradata's standard locking is undesirable. For more information, see the LOCKING modifier in your Teradata SQL Reference manual, as well as Understanding the Scope of SAS/ACCESS Lock Options.
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.