How to set file source via Parameter in SSIS?

前端 未结 1 1860
既然无缘
既然无缘 2021-01-26 11:03

I have multiple packages for each location site and each site contains 5 other sub sites for which data has to be populated every month. Hence I have approx 20 excel files as a

相关标签:
1条回答
  • 2021-01-26 11:36

    Looks like you're using an expression on the excel connection manager "ConnectionString" property. When that property is changed to just a file path that isn't a valid connection string for that type of connection.

    With excel file connections it's a little different and you'll want to use the ExcelFilePath property, which in turn is used by the connection manager when building out the connection string.

    With Flat File Connections, yes you would use the ConnectionString property, Excel Connections, slightly different, use the ExcelFilePath property.

    0 讨论(0)
提交回复
热议问题