Questions tagged [ora-29532]
3 questions
4
votes
2 answers
Raising errors from Java stored procedures without "ORA-29532 Java call terminated by uncaught Java exception"
Suppose you have a Java class which defines a copyFile(String, String) method:
public class FileSystem {
public static void copyFile(String sourcePath, String destinationPath)
throws IOException
{
// ignore the fact that I'm…

Adam Paynter
- 46,244
- 33
- 149
- 164
3
votes
3 answers
Oracle error log file
I'm running following block in Oracle (what does it do is not so important)
BEGIN
SDO_RDF_INFERENCE.CREATE_RULES_INDEX(
'my_index',
SDO_RDF_Models('my_model'),
SDO_RDF_Rulebases('RDFS'));
END;
and getting following error:
ORA-29532:…

Yury Litvinov
- 1,354
- 2
- 16
- 24
0
votes
0 answers
Oracle Error using loadjava (ORA-29532)
When I try to load a jar containing an interface in Oracle12c thanks to this command:
loadjava -v -r -u user@localhost:1521:SCM -resolver "((* SCM) (* PUBLIC) (* -))" C:\PATH\message-sender-0.1.0-SNAPSHOT.jar
All classes are well loaded but no one…

Max
- 81
- 1
- 5