Hi guys,
Can anyone help with the following PL/SQL; I've been trying different things but get an error each time:
DECLARE
TimeBasedNr NUMBER(18);
UserId VARCHAR2(8);
ReturnCode VARCHAR2(1) := NULL;
BEGIN
TimeBasedNr := 200908260228739400;
UserId := 'D134ATE';
iaadmin.iap00002_001_1.UpdateSingle001@db_link(TimeBasedNr, UserId, ReturnCode);
END;
I get "Error at line 8: PL/SQL: Statement ignored" for the procedure call. It works fine locally on the database (without the database link). Thanks for help.
Mike