In-Memory Database Guide : Working with in-memory tables : Creating temporary and transient tables : Creating transient tables
  
Creating transient tables
To create a transient table, use the following command:
CREATE TRANSIENT TABLE <...>;
where <...> denotes syntax that is the same as for any other type of table.
Transient tables are always in-memory tables. If you use the STORE DISK clause, the server will give you an error. If you use STORE MEMORY, or if you omit the STORE clause altogether, the server will create the transient table as an in-memory table.
Related information
See Types of in-memory tables.
See also
Creating temporary and transient tables