Hi,
I am created a Stored Procedure and it will return XML result set. I am calling this storedprocedure in SSIS package ( using the execute SQL task) and writing the result of the StoredProcedure in a file ( by using the script task ) .
Now i configure the SP to return only 4 rows, the SSIS package is getting executed and a xml file will be written in a folder.
If the SP is configured to return all the rows, then there is Insufficient memory to continue the execution of the program error.
Detail error:
"Insufficient memory to continue the execution of the program.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly." while executing the Execute SQL task.
Execute SQL task :
Result Set = XML
Can anyone please let me know how to resolve this error and why there is an error when all the rows are returned ( the xml file with all rows is returned from the Stored Procedure ).
-Prasad