procedure schedule_changes (l_day in pls_integer default 0, l_hour in pls_integer default 0, l_minute in pls_integer default 10);
Runs the Synch_changes() API repeatedly at the specified time interval to check for user changes in an LDAP directory and alert interested parties of any changes. The default interval is ten minutes. Schedule_changes() submits a database job using the DBMS_JOB utility to run Synch_changes().
| l_day | The number of days in the interval to specify how often you want to run the Synch_changes() API. The default value is zero. |
| l_hour | The number of hours in the interval to specify how often you want to run the Synch_changes() API. The default value is zero. |
| l_minute | The number of minutes in the interval to specify how often you want to run the Synch_changes() API. The default value is ten. |