While working with our SSIS components in Visual Studio, you may encounter an Exception from HRESULT: 0xC0047043 error:

This is a known issue in Visual Studio SSIS project. It occurs because Visual Studio UI attempts to overlap the loading process. This usually happens when you try to load a new component view while another component view is already open, since only one component view can exist at a time.
This behavior is also described in Microsoft’s documentation: Integration Services error and message reference
The solution for this issue is to simply click OK in the error window and wait a few seconds (the exact time depends on the source but usually waiting ~20 seconds should suffice). This will allow the first process to finish before the second one begins.
Please reach out to [email protected] if this does not resolve the issue you’re encountering.

