Regarding the polling trigger, this is nothing more than a SQL statement. This statement needs to return a result, for instance a record count. Think of a scenario where you need to check if there are records in Oracle in a table for which a flag has not been set yet. You can then set up to check the amount of records. If it would be a Domino database you check, the formula would be:
SELECT Form = "my form" & myfield= "Yes"
Then the polling reset trigger statement is set to FIELD myfield:="No" to reset the flag. For Oracle it could be something like SELECT myfield from mytable where myfield='yes', or alternatively you can address a stored procedure in Oracle to give a result, which updates the result fields as well, once it is polled by LEI.
Regarding your second problem, simply stating that it is not working is going to be a bit difficult to answer. There can be many reasons. It could have something to do with field comparison, wrong character sets on either end, whether you are using views in Oracle, whether you are using bi-directional replication and timestamps, which version of LEI etc. If you can reply back with those details, I am sure we can help you to solve the problem.
|