ssis-2016

querying ssisdb to find the name of packages

血红的双手。 提交于 2020-07-18 12:35:09
问题 i was querying the ssis catlog to find out the name of all the packages in the catalog. There are only 6 packages in the Folder1 project,but the query gives 9 records 1. SELECT P.NAME FROM SSISDB.internal.projects PRJ INNER JOIN SSISDB.internal.packages P ON P.project_version_lsn=PRJ.object_version_lsn WHERE PRJ.NAME='Folder1' Does it show the deleted packages from the project as well. 回答1: They aren't deleted, that's part of the historical tracking. You likely wanted a query more similar to

querying ssisdb to find the name of packages

强颜欢笑 提交于 2020-07-18 12:34:52
问题 i was querying the ssis catlog to find out the name of all the packages in the catalog. There are only 6 packages in the Folder1 project,but the query gives 9 records 1. SELECT P.NAME FROM SSISDB.internal.projects PRJ INNER JOIN SSISDB.internal.packages P ON P.project_version_lsn=PRJ.object_version_lsn WHERE PRJ.NAME='Folder1' Does it show the deleted packages from the project as well. 回答1: They aren't deleted, that's part of the historical tracking. You likely wanted a query more similar to

SSIS - Sharepoint List Adapters for SQL Server 2016

佐手、 提交于 2020-02-28 17:19:23
问题 We have many SSIS imports in our environment all created with SQL / Visual Studio 2008 version. We run a lot of imports from SharePoint and for that we have been using SharePoint List Adapters that we got from CodePlex long time ago. It works great in SSIS 2008. However we are trying to upgrade all of our jobs to run with newer version and using SQL Server Data Tools 2015. I installed SQL Server Data Tools 2015 on the same machine as SQL Server 2008 Developer Tools. I am still able to use the

SSIS - Sharepoint List Adapters for SQL Server 2016

本小妞迷上赌 提交于 2020-02-28 17:17:46
问题 We have many SSIS imports in our environment all created with SQL / Visual Studio 2008 version. We run a lot of imports from SharePoint and for that we have been using SharePoint List Adapters that we got from CodePlex long time ago. It works great in SSIS 2008. However we are trying to upgrade all of our jobs to run with newer version and using SQL Server Data Tools 2015. I installed SQL Server Data Tools 2015 on the same machine as SQL Server 2008 Developer Tools. I am still able to use the

SSIS - Sharepoint List Adapters for SQL Server 2016

末鹿安然 提交于 2020-02-28 17:16:35
问题 We have many SSIS imports in our environment all created with SQL / Visual Studio 2008 version. We run a lot of imports from SharePoint and for that we have been using SharePoint List Adapters that we got from CodePlex long time ago. It works great in SSIS 2008. However we are trying to upgrade all of our jobs to run with newer version and using SQL Server Data Tools 2015. I installed SQL Server Data Tools 2015 on the same machine as SQL Server 2008 Developer Tools. I am still able to use the

SSIS: Dynamic Lookup Query

点点圈 提交于 2020-01-15 11:45:27
问题 I would like to implement the following logic to my Lookup query as an expression: SELECT ID, CASE @[User::ConnectionStringID] WHEN 1 THEN "NE" WHEN 2 THEN "BALT" WHEN 3 THEN "NY" WHEN 4 THEN "PA" END AS Region FROM dbo.Table; My package is executed in a loop where the connection string is dynamically updated using a config file and it loops 4 times as shown in the above logic. I realized today that the Lookup transformation has no expressions available to it and I haven't been able to find

ERROR: To run a SSIS package outside of SQL Server Data Tools you must install Standard Edition (64-bit) of Integration Services or higher

喜夏-厌秋 提交于 2020-01-07 03:38:27
问题 I have VS2015 Community and SQL Server 2016 Developer installed. Using the MSFT link, I've ensured to download the latest version of SSDT, which appears to install without error (though, Integration Services do not show in the SQL Configuration Manager). Using previously validated projects that creates and executes SSIS packages, I cannot get the same code to work with the current setup. The error showing when I debug: Component: SSIS.Pipeline Error: To run a SSIS package outside of SQL

SSIS script task fail version 15.0 script?

♀尐吖头ヾ 提交于 2019-12-21 23:14:03
问题 I have a 2012 SSIS project that runs on SQL Server 2016. I have SSDT 2015 on both my dev machine and server. Everything works fine except for script tasks - I made a change to an existing script task and rebuilt and redeployed the project and I receive the following error: Script task uses version 15.0 script that is not supported in this release of integration services. To run the package, create a new script. I've tried the following: upgrading the project to 2016 creating a new script