SQL Server 2014: Database Compatible for In-Memory OLTP

SQL Server 2014 has an awesome feature of having database and tables In-Memory and do online transaction processing. For doing In-Memory OLTP, the database and table should support Memory OLTP. This can be achieved by creating a new database in SQL Server 2014.

Situation may arise, that you need to upgrade the SQL Server 2005 or 2008 to 2014. In this case the database will be already available. Now how to make the existing database compatible for In-Memory OLTP? Making an existing database to support in-Memory OLTP is easy. Follow the below steps to do that.

Steps to Make a Database Compatible for In-Memory OLTP

  1. Open SSMS.
  2. In the object explorer, select the database you want to support In-Memory OLTP.
  3. Right-click and select properties.
  4. In the properties window, go to the Filegroups page. You can see the MEMORY OPTIMIZED DATA section.
  5. Click the Add Filegroup button and enter the name of the filegroup.
    SQL-Server-2014-CPT1-In-Memory-OLTP-04
  6. Now, go to the Files page.
  7. Click the Add button and enter the Logical Name, Select the File Type as FILESTREAM Data and change the file path if needed.
    sQL-Server-2014-CPT1-In-Memory-OLTP-03
  8. Click OK.

The database is now optimized for In-Memory OLTP.

If you want to create a fresh database in SQL Server 2014, then follow the steps in the article “Creating In-Memory OLTP Compatible Database“.


Leave your thoughts...

This site uses Akismet to reduce spam. Learn how your comment data is processed.