Assuming there is a connection between the two databases and that the returned data matches most rows, you can use the MINUS operation. Sort of
SELECT list_of_columns
FROM some_table
WHERE some_criteria
MINUS
SELECT list_of_columns
FROM some_table@db_link_to_dev
WHERE some_criteria
, , , . . , , , .