Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error : The result binding name must be set to zero for full result set and XML results

Tags:

ssis

ssis-2008

I have only a single row that is being returned from a sql query(count(*)), but upon execution of the package, it shows me the above error and package is failing.

I have the result type to "single row", and have mapped the output of the query(select count(*) as 'result' from abc.tbl_nm) to a variable of type Int32.

like image 937
WhoamI Avatar asked Oct 02 '13 06:10

WhoamI


1 Answers

When mapping your 'Result Set', set your 'Result Name' to '0' and 'Variable Name' to the variable you are using.

like image 150
Inus C Avatar answered Oct 06 '22 01:10

Inus C