-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error analyzing SSIS 2012 packages with project connection managers #4
Comments
kmartin wrote Jan 30, 2013 at 8:34 AM wrote Jul 24, 2015 at 9:38 PM fmoeller wrote Feb 2, 2016 at 3:25 AM One gets the following error: Bill WillSampson wrote Jan 21 at 7:22 AM Basically just added this; |
Will Sampson seems to have patched it locally. Sadly I cannot find his mail address to add him here. |
I just tested release v0.20.0.0 and it still complains about every project connection manager.
|
Packages that are deployed into SSISDB will now work correctly. Packages that are stored on the file system, and which use Project Deployment will not work correctly. (I haven't worked out how to handle these without using an ugly solution as suggested by WillSampson yet.) |
Hi @keif888 for the file system project deployment modell you could just build the SSIS project from scratch. Have a look at https://github.com/sabinio/SSISMSBuild/blob/master/SSIS2012Tasks/DeploymentFileCompilerTask.cs#L131 . Could that work? |
The issue is working out if a .dtsx file is in project or package deployment mode, without any other input. |
Latest commit (c56b747) has the capability of handling .ispac files, or detecting that it needs to build them, and utilise the .dtproj file that should be there. Assumption is that if there isn't an ispac file, then there will be a .dtproj file, as you are scanning a source location. More testing of this is required, to ensure that it isn't double scanning, and that the locations utilised are appropriate. Once testing is complete I will do another release. |
File system .ispac and file system .dtproj (detected by .conmgr and .params files) is now in V0.22.0.0 release. |
Hi there.
I tried out analyzing some SSIS packages and tables in my SQL Server 2012 test environment and ended up with the following error:
Error occurred: 'The connection "{B1505881-47D0-4DE3-9B2A-77F02CD58D9F}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
I analyzed the packages using file folders, not SSIS folders (I did not find out the right syntax for analyzing my SSISDB-deployed projects yet, any advise here?) and the connection is a project connection manager. When I convert it to a package connection manager everything works fine.
Am I doing something wrong or are project connection managers not supported by now (or only from SSISDB)?
Best regards and thank you for this great tool!
Boris
The text was updated successfully, but these errors were encountered: