> When I try to insert a .net Decimal value into an Oracle decimal
column, I get this error: "numeric precision specifier is out of range
(1 to 38)". I googled it and found lots of advice to > > increase the
precision on the database. I've been fiddling with it for a bit but I
can't get it to work. These aren't currently big numbers either. My
test data for now is stuff like "1.23".
I figured it out. For future posterity, I used the "precision" and
"scale" XML attributes.
For example:
<parameter property="SedimentAndWaterPercentage" precision="22"
scale="8" column="sed_water_percentage"/>
Sorry to bother you,
Dustin