Hi All
I want to understand if there will be a difference in performace or on any front between
Any inputs will be of a great help. I am dealing with huge fact tables and many volatile tables to be created in a stored procedure.
1. Creating a Volatile table / permanent table first and then inserting into it
Ex:
STEP1:
CREATE VOLATILE TABLE #TABLE1,
NO FALLBACK, NO JOURNAL, NO LOG
(COLUMN1 DEF)
PRIMARY INDEX (COLUMN1)
↧