SSIS Stored Procedure Call

后端 未结 5 1307
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-18 21:19

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

5条回答
  •  广开言路
    2021-01-18 21:25

    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
        )
      )
    

提交回复
热议问题