@engin_arlak has provided good info for resolving this notification.
You might consider using the BasicNotification instead of the Insert/Update/DeleteNotification types.
The Insert/Update/DeleteNotification types are convenient because they create the DB objects (trigger, buffer table) for you. And for BasicNotification you need to manually create them in the DB.
Be aware, though:
- The ability of the adapter to create/drop DB objects requires DB permissions (as @engin_arlak notes) that DB teams may not be willing to grant to an application.
- When the Insert/Update/DeleteNotification is disabled, the DB objects are dropped. If someone disables the notification, intentionally or otherwise, events can be missed/lost.
- BasicNotification requires a one-time set up in the DB. Suspending/disabling the notification has no impact on the DB objects. Downside is that when a notification is retired, the DB objects must be manually dropped.
Our convention is to only use BasicNotification. It can be used for insert, update and delete actions (the trigger is what controls what DB actions get put into the buffer table – e.g. before delete, after update, etc.) You may want to consider the same approach.
#webMethods#Adapters-and-E-Standards#Integration-Server-and-ESB