Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Data Issues

Checks for data issues.


Table of contents
  1. Using Placeholder Rows
  2. Data Should be Encrypted if Compliance Dictates

Back to top


Using Placeholder Rows

Check Id: 60 Not implemented yet. Click here to add the issue if you want to develop and create a pull request.

A placeholder is an empty row/record that is created to hold the place of possible future data in the row that may or may not be necessary.

While placeholder rows do not violate database normalization rules, it is not considered a best practice to create “empty” rows. Row data should only be created when it is materialized. If the row data does not exists, it should not be inserted. If the row data is removed, the row should be hard or soft deleted. Empty rows are not free, there is overhead space allocated with placeholder rows, which can impact performance.

Having the unnecessary placeholder rows can muddy queries that now would need to include IS NOT NULL or LEN(PhoneNumber) > 0 to exclude these placeholder rows on other queries.

Back to top


Data Should be Encrypted if Compliance Dictates

Potential Finding: Unencrypted Data
Check Id: 27

The table column returned for this check might have unencrypted data that you might want to have encrypted for best practices or industry specific compliance. You will need to determine if the data needs to be protected at rest, in transit or both.

With SQL Server you have a couple choices to implement hashing or encryption

Back to top