DECLARE checkRow NUMBER;
BEGIN
;
IF checkRow = 1 THEN
;
ELSE
;
END IF;
END;
–GO
COMMIT;
But it still also errors. Does anyone know how I can fix this?
DECLARE checkRow NUMBER;
BEGIN
;
IF checkRow = 1 THEN
;
ELSE
;
END IF;
END;
–GO
COMMIT;
But it still also errors. Does anyone know how I can fix this?
Can you provide the entire changeset definition? That’s not enough to help you.