dblink_ora_call() v13
The dblink_ora_call() function executes a non-SELECT statement on an Oracle database and returns a result set. The signature is:
dblink_ora_call(<conn_name>, <command>, <iterations>)
Where:
conn_namespecifies the name of the link.commandspecifies the text of the SQL statement that will be invoked on the Oracle server.iterationsspecifies the number of times the statement is executed.
The function returns a SETOF record.