Interview Questions

Oracle DBA Checklist - Weekly Procedures - obj_coord.sql

Oracle DBA Checklist


(Continued from previous question...)

Oracle DBA Checklist - Weekly Procedures - obj_coord.sql

-- obj_coord.sql
--
-- To find out any difference in objects between two instances


SELECT object_name, object_type
FROM user_objects
MINUS
SELECT object_name, object_type
FROM user_objects@&my_db_link

Other Interview Questions