The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

Execute SQL Operator - Calling Oracle Stored Procedure - Invalid SQL Statement

SUPSONSUPSON Member Posts: 2 Learner I
edited June 2020 in Help
Trying to call an Oracle stored procedure using the Execute SQL operator and getting
Database error occurred: ORA-00900: invalid SQL statement.

The SP I'm trying to call is located within the schema that I've configured the connection for.
I can execute the SP successfully while connected via SQL Developer.

I've tried:
EXECUTE <SP_NAME>
EXECUTE <SCHEMA>.<SP_NAME>
EXEC <SP_NAME>
EXEC <SCHEMA>.<SP_NAME>

I was able to successfully run SELECT SYSDATE FROM DUAL using Execute SQL operator.

Thanks in advance.

Tagged:

Best Answer

Answers

  • SUPSONSUPSON Member Posts: 2 Learner I
    Got it to work...mostly. I used a test stored procedure that had a date in the where clause and I was getting an error around that. Once I changed the query and removed the date reference (just to see if I can even get the StoredProc to run), I was successful in getting the stored procedure to be called. Thanks for the help!
Sign In or Register to comment.