Can I use table variable in memory optimized procedure?
DECLARE @tvTableD TABLE
( Column1 INT NOT NULL ,
Column2 CHAR(10) );
Can someone please confirm the same?
Can I use table variable in memory optimized procedure?
DECLARE @tvTableD TABLE
( Column1 INT NOT NULL ,
Column2 CHAR(10) );
Can someone please confirm the same?
Copyright © 2021 Jogjafile Inc.
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:
Faster temp table and table variable by using memory optimization