I have problem with my Visual studio 2013 Ultimate from few days. I\'m trying to open even simplest console application and VS hangs and when I click something else in Visual st
For VS2015 users who are dealing with this problem: close everything, delete the ".vs" folder on the project root and reopen it.
The problem
This issue arises when the Data-source is a View that SELECTs from the results of other Views.
What happens is that the routine that calculates which columns supplied by the View gets confused.
The solution to the problem
Create a stored procedure that:
This enables the Data-flow routine to calculate which columns are supplied by the View.
How I found the solution
I found this answer while creating a new data flow task using Visual Studio 2010's data-source assistant.
I ensured I would not experience network issues between the database and the application by hosting them on the same server.
The view in question was based on 2 other views, which were pointing to multiple tables over multiple databases.
The SSIS pkg was created by a windows account that is also server admin in Sql, but I think SSIS is just incapable of validating the data from such a complex View.
I got similar error when I installed Wix Extension, so while opening wix type of project I was getting this error. I just restarted the machine and opened the solution again and the problem is gone.
This problem happened with me because the large number of code lines in one function (more than two thousand line ) I divided my code to many function then every thing worked correctly.
I've had two things cause this beside the suo/vs folder thing:
From this superuser post, delete the .suo (.vs12.suo for me) file from the solution directory. Worked for me in VS2013.