I have a Progress database that I need to poll on a regular interval to get the new rows in certain tables. Not all of these tables have a date column or other column that can be used in the query to tell which rows are new. Can ROWID be used? Is it sequential?
SELECT *
FROM pub.MyTable
WHERE ROWID > {The last ROWID returned}
SELECT *
FROM pub.MyTable
WHERE ROWID > {The last ROWID returned}