in reply to Re^4: DBD::Oracle::st fetchrow_hashref failed: ORA-25401
in thread RESOLVED - DBD::Oracle::st fetchrow_hashref failed: ORA-25401
I had a similar issue with a "notes" field, and a workaround that seemed to work well was to convert the field and cap it:
In my case, Notes was a VARCHAR(MAX) data type, and my error message was "out of memory". (My database SQL Server, driver Sybase). You might try this or see what happens if you use:SELECT convert(VARCHAR(8000), a.Notes) as Notes ...
That would at least tell you if the error is coming from some crap data in that field, assuming the crap data isn't the first character. The above is "worth a shot" but I wouldn't be surprised if it doesn't reveal the problem.convert(VARCHAR(1), a.Notes)
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: DBD::Oracle::st fetchrow_hashref failed: ORA-25401
by perldigious (Priest) on Feb 04, 2020 at 19:57 UTC |
In Section
Seekers of Perl Wisdom