I am trying to execute some oracle pl/sql procedure with in and out parameters from # code on asp.net. I want to retrive the value from out parameter. but when I execute i am ge
The problem originates from using Char which is a fixed length string.
Not sure where, but somewhere in your code you try to put a Char or
varchar2 string of length N into a char of lengh M where M > N.