Skip to content

Commit 52eb8c9

Browse files
authored
Merge branch 'main' into amyles
2 parents 07b6ed7 + d89fe54 commit 52eb8c9

File tree

8 files changed

+38
-109
lines changed

8 files changed

+38
-109
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Lock-Free Reservation
2+
3+
A Lock-Free Reservation allows multiple concurrent updates on a numeric column value to proceed without being blocked by uncommitted updates when adding or subtracting from the column value.
4+
5+
By avoiding the traditional locking mechanism during updates, this feature allows you to greatly improve on the user experience with reduced blocking in the presence of frequent concurrent updates to reservable columns. In previous releases, when a column value of a row is updated by adding or subtracting from it, all other updates to that row are blocked until the transaction is committed. With the introduction of the Lock-Free Reservation feature in Oracle Database 23ai, you can allow transactions
6+
to concurrently add or subtract from the same row’s reservable column without blocking each other by specifying the conditions for which the updates may proceed.
7+
Especially online applications updating intensively and with huge concurrency, low cardinality tables can take advantage of this new feature.
8+
9+
Reviewed: 03.09.2024
10+
11+
# Useful Links
12+
13+
## Documentation
14+
15+
- [Database Concepts](https://docs.oracle.com/en/database/oracle/oracle-database/23/cncpt/tables-and-table-clusters.html#GUID-7C6A8E8A-F634-4D0D-877A-F948D6101066)
16+
- [Database Developer Guide](https://docs.oracle.com/en/database/oracle/oracle-database/23/adfns/using-lock-free-reservation.html#GUID-60D87F8F-AD9B-40A6-BB3C-193FFF0E60BB)
17+
- [SQL Language Reference](https://docs.oracle.com/en/database/oracle/oracle-database/23/sqlrf/CREATE-TABLE.html#GUID-F9CE0CC3-13AE-4744-A43C-EAC7A71AAAB6)
18+
19+
20+
# Team Publications
21+
22+
## Blogs
23+
- [Lock-free reservation: how to start with](https://blogs.oracle.com/coretec/post/lock-free-reservation-in-23c)
24+
- [Lock-free reservation: scale your apps](https://blogs.oracle.com/coretec/post/lockfree-reservation-in-23c-scale-your-apps)
25+
26+
## Videos
27+
- [23ai Playlist](https://www.youtube.com/playlist?list=PLHA__TOeNI7MNBND0JWQUqTYOQ1up-VHX)
28+
29+
# License
30+
31+
Copyright (c) 2024 Oracle and/or its affiliates.
32+
33+
Licensed under the Universal Permissive License (UPL), Version 1.0.

data-platform/core-converged-db/database-23ai/transactions/automatic-rollback/LICENSE

Lines changed: 0 additions & 35 deletions
This file was deleted.

data-platform/core-converged-db/database-23ai/transactions/automatic-rollback/README.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

data-platform/core-converged-db/database-23ai/transactions/automatic-rollback/files/automatic-transaction-rollback-v$parameter.sql

Lines changed: 0 additions & 7 deletions
This file was deleted.

data-platform/core-converged-db/database-23ai/transactions/automatic-rollback/files/automatic-transaction-rollback-v$session.sql

Lines changed: 0 additions & 6 deletions
This file was deleted.

data-platform/core-converged-db/database-23ai/transactions/automatic-rollback/files/automatic-transaction-rollback-v$transaction.sql

Lines changed: 0 additions & 4 deletions
This file was deleted.

data-platform/core-converged-db/database-23ai/transactions/lock-free-reservation/README.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

data-platform/data-security/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Security of Data is at the core of our products. As a team, we focus on Securi
77
- The stand-alone products: Audit Vault and Database Firewall, Key Vault
88
- The Enterprise Manager pack: Data Masking and Subsetting
99

10+
Reviewd: 03.09.24
11+
1012
# Team Publications
1113

1214
- [Deploy Oracle KeyVault](https://medium.com/@aurelia.nita/deploy-oracle-key-vault-dbfbc2a67876)
@@ -16,6 +18,9 @@ Security of Data is at the core of our products. As a team, we focus on Securi
1618
- [Compliance Reporting with Oracle Data Safe Security Assessment](https://www.linkedin.com/pulse/compliance-reporting-oracle-data-safe-security-assessment-ilyas/)
1719
- [Data Redaction Demo](https://youtu.be/6FMgzi2eLNk)
1820
- [Data Redaction - Extend it to multiple columns and Analytics](https://www.youtube.com/watch?v=Q0K2caAtGIY)
21+
- [Leveraging Oracle Database Vault to Defend Against Insider Threats](https://www.youtube.com/watch?v=GgHXK0IpQKE)
22+
- [Ransomware Defense in Oracle Cloud: Ensuring Secure Data Protection](https://medium.com/@aurelia.nita/ransomware-defense-in-oracle-cloud-ensuring-secure-data-protection-f56386bfcda3)
23+
1924

2025
# Useful Links
2126

0 commit comments

Comments
 (0)