yes, you're right, there's a separate oracle forum, although this one should definitely have the "PL/SQL" taken off its name
if you want an sql solution and not a postgresql solution, the only ones i'm familiar with are:
-- NOT EXISTS
-- NOT IN
-- EXCEPT
-- OUTER JOIN with test for no match
each of these requires some way of specifying the set of things that aren't there
you don't actually have to have an auxiliary table, though
try joining the table to itself with a left outer join on a.inet = (b.inet - 1)
or something
rudy