Skip to content

Commit eb47f13

Browse files
authored
Create README.md for automatic transaction rollback feature
1 parent 5df813c commit eb47f13

File tree

1 file changed

+32
-0
lines changed
  • data-platform/core-converged-db/database-23c/transactions/automatic-rollback

1 file changed

+32
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Automatic Transaction Rollback Feature
2+
3+
In Oracle Database 23c, apps can assign priorities (LOW, MEDIUM, HIGH) to transactions and configure how long a higher priority transaction should wait for row locks on a lower priority one. After the timeout,
4+
the blocking transaction is automatically rolled back and row locks released so that the higher priority transaction can proceed.
5+
6+
7+
## Useful Links
8+
9+
### Documentation
10+
11+
- [23c Database Administrator's Guide](https://docs.oracle.com/en/database/oracle/oracle-database/23/admin/managing-transactions.html#GUID-14B028D0-48EA-4675-A113-48286AFCD8AB)
12+
- [23c Database Reference](https://docs.oracle.com/en/database/oracle/oracle-database/23/refrn/TXN_PRIORITY.html#GUID-9E60833D-8B58-4E71-9CAF-60EB4C5648C7)
13+
- [23c Database Reference](https://docs.oracle.com/en/database/oracle/oracle-database/23/refrn/TXN_AUTO_ROLLBACK_HIGH_PRIORITY_WAIT_TARGET.html#GUID-B835CD39-221B-40CF-8F59-098101FD2D74)
14+
- [23c Database Reference](https://docs.oracle.com/en/database/oracle/oracle-database/23/refrn/TXN_AUTO_ROLLBACK_MODE.html#GUID-454171AA-19AA-44FC-A18D-0DE7C4676190)
15+
16+
17+
### Team Publications
18+
19+
- [Automatic transaction rollback in 23c with high, medium and low priority transactions](https://blogs.oracle.com/coretec/post/automatic-transaction-rollback-in-23c)
20+
21+
### Blogs
22+
23+
- [Automatic transaction rollback in 23c with high, medium and low priority transactions](https://blogs.oracle.com/coretec/post/automatic-transaction-rollback-in-23c)
24+
25+
26+
# License
27+
28+
Copyright (c) 2023 Oracle and/or its affiliates.
29+
30+
Licensed under the Universal Permissive License (UPL), Version 1.0.
31+
32+
See LICENSE for more details.

0 commit comments

Comments
 (0)