SSIS Package not wanting to fetch metadata of temporary table

后端 未结 6 2103
小鲜肉
小鲜肉 2020-11-29 03:39

I have an SSIS Package, which contains multiple flows.

Each flow is responsible for creating a \"staging\" table, which gets filled up after creation. These tables a

6条回答
  •  既然无缘
    2020-11-29 03:58

    If you are working on SSIS 2012, then it uses system stored procedure sp_describe_first_result_set to fetch the metadata of the tables and it does not support temporary tables. But you can go for other options like table variables and CTEs which are going to work fine. https://connect.microsoft.com/SQLServer/feedback/details/629077/denali-engine-metadata-discovery-shuns-temp-tables

提交回复
热议问题