Hi,
I have a procedure I want to call from an oracle database
-- In Oracle SQL this would be executed as follows (variables for address_heading and address id must be declared):
execute clar.clar.get_address_model_building(38660795,
address_headings,
address);
Im using the sql executor but cant seem to get it to run successfully. It should return a value like this
BN 1T 1L C*
DAVIS COURT, MAIN STREET, HEADFORD, CO. GALWAY
I have tried various iterations but just keep getting did not succeed; error was `ORA-00900: invalid SQL statement'
Any advice on what I need to pass in to run the procedure and return a result?
Thanks