CONTENTS page 1. Steps to be performed in Production Database 1 2 Steps to be performed in Test/Dev Database 3 3. Exercises 5 1. Steps to be performed in Production Database • Check the size of the schema select sum(BYTES)/1024/1024 from dba_segments where owner='SLADMIN'; • Check type of objects and status of the objects the schema. col OBJECT_TYPE for a18 set pages 100 col owner for a10 select owner ,object_type,status, count(*) from dba_objects where owner='DSADMIN' group by owner, object_type, status; • Check the total number of objects in the schema. select count(*) from dba_objects where owner like 'DSADMIN'; • Check for constraints validity in the schema. Select constraint_type,count(*) from dba_constraints where...