Hi,
Can you guys see if there's a solution to this problem?
I have a database from which I have to read each record and process
that record. New records are being added all the time, so I need to go
back and check for new records and process them.
However:
-- there is no 'identity' column in the database design (so I cannot
keep track of the last record read by use of a numeric variable)
-- I am not allowed to update the database (so I cannot flag the
records I have read).
My problem is: how can I know which records I have already read and
which ones I haven't read yet? I don't want to process records twice
and don't want to miss any records.
Is there a known solution to this problem? Any ideas?
Thanks.
Comment