Subject | Re: Row ID |
---|---|
Author | Roman Rokytskyy |
Post date | 2007-03-12T22:30:11Z |
> Unfortunately we need an id for a row that won't change over time,Can you please explain what does the "I can't change the existing
> so I can't use RDB$DB_KEY. As for the existing primary key, it is no
> good either since the date stamp is not guaranteed to be unique
> either... ex - the date is reset on the server, etc (and I can't
> change the existing database schema). It seems that I'm stuck with
> keeping a list of sent rows to compare against. Any other ideas?
database schema" means?
If it is about some other legacy applications, then maybe there's a
solution. I am thinking about creating an updatable view with the name
of the table you have (that one has to be dropped). Then your updates
and inserts would go to the base table, but other legacy applications
would select from the view.
Roman