I have a table which is the target of foriegn key references. During
the course of a days operations, some elements in this table may become
unreferenced by any other table. I would like to remove all entries
from this table which are not linked via FK to another table. Under
7.0 a quick way to do this is to ...
set xact_abort off
delete from <table name>
set xact_abort on
How can I efficiently do this under SQL6.5 (which does not appear to
have xact_abort in its set command).
Thanks
Jim