I\'m trying to call a simple stored procedure which would return a list of names in normal test format, all in a single line. I\'m passing it two parameters, but no matter h
I faced with a similar issue after upgrading to SSDT for VS 2013 (the problem was with lookup element). Fixed by using this answer:
EXEC ('dbo.MyStoredProcedure') WITH RESULT SETS ( ( MyIntegerColumn INT NOT NULL, MyTextColumn VARCHAR(50) NULL, MyOtherColumn BIT NULL ) )