For DB2 projects, the property KEEPINMEM will be used when a table has Yes (durable). For more information about this property, see IBM documentation (https://www.ibm.com/support/knowledgecenter/en/ssw_ibm_i_73/cl/chglf.htm) For Oracle project, the option CACHE will be used when a table has Yes (durable).
Be aware that there are - at least for SQL Server - and depending on the version of SQL server you are using, quitte a few limitations when using in-memory tables. I do support using them, but thorrough regression testing is required when implementing them.
Check here, for example: https://docs.microsoft.com/en-us/sql/relational-databases/in-memory-oltp/transact-sql-constructs-not-supported-by-in-memory-oltp?view=sql-server-2017
It is now possible to keep a table into memory. There are three options: No, Yes (durable) and Yes (transient). The option Yes (transient) is only available for SQL server projects. For more information about memory optimized tables in SQL server..
Can you explain the difference between Yes (durable) and Yes (transient)?
In database systems, durability is the ACID property which guarantees that transactions that have committed will survive permanently. For example, if a flight booking reports that a seat has successfully been booked, then the seat will remain booked even if the system crashes.
Yes (transient) is only stored in memory, so if the server crashes you loose your data. While with durable, the data is stored and will be loaded in memory again. You can use transient for example, when the data is calculated based on other tables.
We use 3 different kinds of cookies. You can choose which cookies you want to accept. We need basic cookies to make this site work, therefore these are the minimum you can select. Learn more about our cookies.