Index: openacs-4/packages/notifications/tcl/sweep-procs-oracle.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/notifications/tcl/sweep-procs-oracle.xql,v diff -u -r1.2 -r1.3 --- openacs-4/packages/notifications/tcl/sweep-procs-oracle.xql 3 Jun 2002 08:13:18 -0000 1.2 +++ openacs-4/packages/notifications/tcl/sweep-procs-oracle.xql 3 Jun 2002 22:27:00 -0000 1.3 @@ -1,30 +1,40 @@ + - oracle8.1.6 + oracle8.1.6 - - -select notification_id -from notifications where not exists -(select notifications.notification_id -from notifications, notification_requests, notification_user_map -where notifications.type_id = notification_requests.type_id -and notifications.object_id = notification_requests.object_id -and notifications.notification_id = notification_user_map.notification_id (+) -and sent_date is NULL) - - + + + select notification_id + from notifications + where not exists (select notifications.notification_id + from notifications, + notification_requests, + notification_user_map + where notifications.type_id = notification_requests.type_id + and notifications.object_id = notification_requests.object_id + and notifications.notification_id = notification_user_map.notification_id (+) + and sent_date is null) + + - - -select notifications.notification_id, notif_subject, notif_text, notif_html, notification_requests.user_id, acs_object.name(object_id) as object_name -from notifications, notification_requests, notification_user_map -where notifications.type_id = notification_requests.type_id -and interval_id = :interval_id -and notifications.object_id = notification_requests.object_id -and notifications.notification_id = notification_user_map.notification_id (+) -and sent_date is NULL - - + + + select notifications.notification_id, + notif_subject, + notif_text, + notif_html, + notification_requests.user_id, + acs_object.name(notifications.object_id) as object_name + from notifications, + notification_requests, + notification_user_map + where notifications.type_id = notification_requests.type_id + and interval_id = :interval_id + and notifications.object_id = notification_requests.object_id + and notifications.notification_id = notification_user_map.notification_id (+) + and sent_date is null + +