Connect to the database as IKB and run the synchronization, e.g.:
exec oid_sync.synchronize_users(15212);
As an alternative, schedule a background job using
e.g.:
begin
dbms_scheduler.create_job (
job_name => 'OID_SYNC_JOB'
, job_type => 'PLSQL_BLOCK'
, job_action => 'BEGIN oid_sync.synchronize_users(15212); END;'
, repeat_interval => 'FREQ=MINUTELY; INTERVAL=5'
, enabled => true
);
end;
/
If you need to temporarily disable the background job, use these commands:
exec dbms_scheduler.disable('OID_SYNC_JOB');
exec dbms_scheduler.enable('OID_SYNC_JOB');
If you need remove the background job, use this command:
exec dbms_scheduler.drop_job('OID_SYNC_JOB');