Table variables in in-memory oltp procedure

435 Views Asked by At
1

There are 1 best solutions below

0
On

You linked the doc:

"Table types cannot be declared inline with variable declarations. Table types must be declared explicitly using a CREATE TYPE statement."

This article shows you how to replace the inline table variable declaration with a table type:

CREATE TYPE dbo.typeTableD  
    AS TABLE  
    (  
        Column1  INT   NOT NULL   INDEX ix1,  
        Column2  CHAR(10)  
    )  
    WITH  
        (MEMORY_OPTIMIZED = ON); 

Faster temp table and table variable by using memory optimization