OOPS --- I just made a careless error.
I updated a bunch of records with Postgres 7.01 psql
update users set my_id =20 where xfield =1;
Is there a way to UNDO this action? I havn't done a
Vacuum and will hold off pending a reply... As I understand
it, the update actually creates a new row with a new OID
and the old row remains marked for deletion....
something like:
select oid, user_id, last_name, first_names
where oid IS DELETED and xfield=1;
So, any "EASY" solutions?
TIA
-Bob