I have a C# project that connects to an Oracle server using ODBC
Everything works fine if I keep the file name length less than 23 characters (including ".exe")
If the executable file name exceeds 23 characters this I get the following oracle exceptions
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at line 24
This behaviour is observed only for a particular oracle database server .
I have tried changing the connection string and other such options but nothing works.
Everything works fine if I keep the file name length less than 23 characters (including ".exe")
If the executable file name exceeds 23 characters this I get the following oracle exceptions
ORA-00604: error occurred at recursive SQL level 1
ORA-06502: PL/SQL: numeric or value error
ORA-06512: at line 24
This behaviour is observed only for a particular oracle database server .
I have tried changing the connection string and other such options but nothing works.
Comment