Skip to content

Commit 8b787df

Browse files
authored
Create README.md
New entry for Database in-memory with Readme
1 parent 9d53c91 commit 8b787df

File tree

1 file changed

+37
-0
lines changed
  • data-platform/core-converged-db/db-in-memory

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Database In-Memory
2+
3+
Database In-Memory features a highly optimized In-Memory Column Store (IM column store) maintained alongside the existing buffer cache. The primary purpose of the IM column store is to accelerate columnoriented data accesses made by analytic operations. It is similar in spirit to having a conventional index (for analytics) on every column in a table. However, it is much more lightweight than a conventional index, requiring no logging, or any writes to the database. Just as the performance benefit to an application from conventional indexes depends on the amount of time the application spends accessing data in the tables that are indexed, the benefit from the IM column store also depends on the amount of time the application spends on data access for analytic operations. It is therefore important to understand the basic characteristics of your application to determine the potential benefits from Database In-Memory.
4+
5+
Review Date: 03.06.2024
6+
7+
## Useful Links
8+
9+
### Documentation
10+
11+
- [Database In-Memory](https://www.oracle.com/database/in-memory/)
12+
- [Database In-Memory Guide](https://docs.oracle.com/en/database/oracle/oracle-database/23/inmem/index.html#Oracle%C2%AE-Database)
13+
-
14+
### Team Publications
15+
16+
- [When and How to use Oracle Database In-Memory Advisor](https://blogs.oracle.com/coretec/post/how-to-use-oracle-database-in-memory-advisor)
17+
- [Running Oracle Database In-Memory Advisor Offline](https://blogs.oracle.com/coretec/post/running-oracle-database-in-memory-advisor-of-one-database-on-another)
18+
- [Oracle Database In-Memory - Getting Started](https://blogs.oracle.com/coretec/post/oracle-database-in-memory---getting-started-with-oracle-database-21-xe-and-sql-developer)
19+
20+
### Blogs and technical briefs
21+
22+
- [DBIM Resources](https://blogs.oracle.com/in-memory/post/dbim-resources)
23+
- [Oracle Database In-Memory](https://blogs.oracle.com/in-memory/)
24+
- [When to Use Oracle Database In-Memory](https://www.oracle.com/docs/tech/when-to-use-oracle-database-in-memory.pdf)
25+
- [Oracle Database In-Memory Implementation Guidelines](https://www.oracle.com/technetwork/database/in-memory/learnmore/twp-oracle-dbim-implementation-3863029.pdf)
26+
27+
### LiveLabs
28+
- [Boost Analytics Performance with Oracle Database In-Memory](https://apexapps.oracle.com/pls/apex/r/dbpm/livelabs/view-workshop?wid=566&clear=RR,180&session=4309406781047)
29+
- [Database In-Memory Advanced Features](https://apexapps.oracle.com/pls/apex/r/dbpm/livelabs/view-workshop?wid=3710&clear=RR,180&session=4309406781047)
30+
31+
# License
32+
33+
Copyright (c) 2024 Oracle and/or its affiliates.
34+
35+
Licensed under the Universal Permissive License (UPL), Version 1.0.
36+
37+
See [LICENSE](https://github.com/oracle-devrel/technology-engineering/blob/main/LICENSE) for more details.

0 commit comments

Comments
 (0)