SSIS - out of memory error again

后端 未结 2 1791
既然无缘
既然无缘 2021-01-02 11:51

I have cca 25 databases which I need to consolidate into 1 database. First I tried to build a ssis package which would copy all data from each table into one place but then

2条回答
  •  误落风尘
    2021-01-02 12:34

    You might run into memory issues if your Lookup transformation is set to Full cache. From what I have seen, the Merge Join performs better than Lookup transformation if the number of rows exceed 10 million.

    Have a look at the following where I have explained the differences between Merge Join and Lookup transformation.

    What are the differences between Merge Join and Lookup transformations in SSIS?

提交回复
热议问题