For wM 6, use the notification features of the DB adapter.
For pre-6 you can easily implement a facility.
Create a buffer table that can hold key information about changes in the table(s) of interest (e.g. insert/update/delete op, key info, etc.)
Create a trigger on the table(s) of interest. The trigger will add an entry to the buffer table.
Create a scheduled task on IS. This task will poll the buffer table to see if there is any work to do. If there are entries in the table, then do the necessary work.
That’s the basic approach. You may need to add some facilities to guard against processing the same row more than once in the case of a failure mid-stream.
HTH.
#webMethods#Adapters-and-E-Standards#Integration-Server-and-ESB