26 lines
725 B
SQL
26 lines
725 B
SQL
-- Customer specific once-script IVET13.
|
|
|
|
SET ECHO ON
|
|
SPOOL xIVET17.lst
|
|
|
|
-- IVET#26822 (noti job tbv transport)
|
|
INSERT INTO fac_notificatie_job (fac_notificatie_job_view,
|
|
fac_notificatie_job_oms,
|
|
fac_notificatie_job_mode,
|
|
fac_notificatie_job_interval,
|
|
fac_notificatie_job_nextrun,
|
|
fac_notificatie_job_flags)
|
|
VALUES ('IVET_V_NOTI_MLD_TRANSPORT',
|
|
'MLD notificatie tbv Transport naar DistributionCoordination',
|
|
3,
|
|
1,
|
|
SYSDATE,
|
|
0);
|
|
|
|
COMMIT;
|
|
|
|
SPOOL OFF
|
|
|
|
@ivet.sql
|
|
|
|
SET ECHO OFF |