Anomalies


Things that might not be 'quite right' about your database and schema

Columns whose name and type imply a relationship to another table's primary key

Child Column Implied Parent Column
action_taken.[complaint_identifier] complaint.[complaint_identifier]
action_taken.[complaint_update_guid] complaint_update.[complaint_update_guid]
staging_complaint.[complaint_identifier] complaint.[complaint_identifier]

Tables without indexes

Table Rows
Anomaly not detected

Tables that contain a single column

Table Column
Anomaly not detected

Tables with incrementing column names, potentially indicating denormalization

Columns whose default value is the word 'NULL' or 'null'

Table
Anomaly not detected