Concurrency exception when calling a teradata storedproc

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I have a C# app that uses a dataadapter to update a table in a teradata
datawarhouse. It performs an update using a teradata stored procedure. In
teradata, stored procs dont actually return the number of rows updated but
instead return a 0 if successful. This results in a concurrency exception
being raised when the update is performed. Is there anyway to get around this
issue.

Regards
Syed
 
I have managed to get it to work. i used an output parameter in teradata
which results in the row count set to 1 and thus doesnot cause a concurrency
exception.
 
Back
Top