UR:未提交的读取

“Uncommitted Read”常缩写为UR,这一简称便于快速书写和日常使用。该术语在数据库和事务处理等综合技术领域中频繁出现,通常指事务读取到其他事务尚未提交的数据的状态。中文译为“未提交的读取”,常用于描述并发操作中的数据一致性问题。

Uncommitted Read具体释义

  • 英文缩写:UR
  • 英语全称:Uncommitted Read
  • 中文意思:未提交的读取
  • 中文拼音:wèi tí jiāo de dú qǔ
  • 相关领域ur 未分类的

Uncommitted Read的英文发音

例句

  1. A user will only see committed data unless the Uncommitted Read(UR) isolation level is used.
  2. 除非使用未提交读隔离级别,否则用户只能看到已提交的数据。
  3. Release the row locks so that other applications can SELECT, INSERT, UPDATE, and DELETE from the table ( for example, use isolation level cursor stability or uncommitted read ).
  4. 释放行锁,以便其他应用程序可以对表执行SELECT、INSERT、UPDATE和DELETE(例如,使用游标稳定性(cursorstability)隔离级别或未提交读(uncommittedread)隔离级别)。
  5. For example, if one member is updating a row, it would not be proper for another member to read the row with any other isolation level than uncommitted read.
  6. 例如,如果一个成员正在更新一行数据,那么另一个成员就不能以未提交读(uncommittedread)以外的任何隔离级别读取这一行。
  7. If you have a read-heavy workload, you might want to set isolation to uncommitted read ( UR ) at the connection level so that you don't have to specify it in each statement.
  8. 如果有一个包含大量读取操作的工作负载,那么您可能想将隔离级别设置为未提交读取(UR),从而不需要在每个语句中设置隔离级别。
  9. If application integrity requirements are not compromised, use Uncommitted Read(UR) instead of Cursor Stability to further decrease the amount of locking.
  10. 如果没有损害应用程序完整性需求,那么可以使用未提交的读隔离级别而不是游标稳定性隔离级别,以进一步减少锁的数量。