Reputation: 155
I have a master package which calls 2 child packages (execute package task) within same SSIS project. The child package runs successfully with no errors however when it returns to the master package, it gives error:
The specified schema name (dbo) either does not exist or you do not have permission to use it
None of my statements reference the DBO schema, they all reference the schema I have permission to use.
I'm using Visual Studio 19
Upvotes: 0
Views: 981
Reputation: 155
Found the solution: The connection manager was erasing itself when opening the SSIS solution file, however the packages ran flawlessly when opening the project file (.dtproj) instead of the (.sln) file. I believe it has something to do with the connection manager being project level.
Upvotes: 1