Data warehouse team has a large SSIS package which needs to access a temp type table, about 2 million rows and about 400 MB. (this is enterprise edition). From a DBA perspective the question may be which would be better a #temp table (wondering since this table would be referenced 4 times in the package by different steps) whether or not a ##temp or #temp table is even viable), or a memory optimized table. Server is a new high end dell with SSD and 192 gig of RAM. Their current SSIS ETL unfortunately creates this same table 4 times and kills memory (Yes I realize this may be a design issue) more interested if anyone has done any comparisons between the temp table and the memory optimized solution
↧