Oracle Error Tips by Donald Burleson
Question: I am working on advancing my SQL knowledge, so I write bits of code, run them and see what they do. Recently, I have run into an ORA-01460 error.
ORA-01460 unimplemented or unreasonable conversion requested
I have researched this mysterious ORA-01460 error, but I cannot see the cause of it in my simple SQL.
What causes the ORA-01460 and how can I avoid it?
Answer: First, use the oerr utility to look up information on the ORA-01460:
ORA-01460 unimplemented or unreasonable conversion requested
Cause: The requested format conversion is not supported.
Action: Remove the requested conversion from the SQL statement. Check the syntax for the TO_CHAR, TO_DATE, and TO_NUMBER functions to see which conversions are supported.
Oracle MOSC documentation reveals that on Oracle versions 8.0.3 and higher, ORA-01460 can be associated with bug 2735156 which is caused by "’mixing’ PLSQL and SQL".
There are other reported causes of the ORA-01460 as well:
- Incompatible character sets can cause an ORA-01460
- Using SQL Developer, attempting to pass a string to a bind variable value in excess of 4000 bytes can result in an ORA-01460
- With ODP, users moving from the 10.2 client and 10.2 ODP to the 11.1 client and 11.1.0.6.10 ODP reported an ORA-01460 error. This was a bug that should be fixed by patching ODP to the most recent version.
It appears, according to information on bug 5872943, that the ORA-01460 associated with ODP.NET, while not an ODP error, persisted through database version 11.2 where it has been reported as fixed.
Burleson is the American Team
Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals. Feel free to ask questions on our Oracle forum .
Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.
Errata? Oracle technology is changing and we strive to update our BC Oracle support information. If you find an error or have a suggestion for improving our content, we would appreciate your feedback. Just e-mail:
and include the URL for the page.