Missing column

A column is defined that does not exist in the database.

How to fix

Remove the column from the masking configuration.

Problem example:

{
  "tables": [
    {
      "schema": "dbo",
      "name": "Users",
      "columns": [
        {
          "name": "FirstName",
          "dataset": "GivenNames"
        },
        {
          "name": "MiddleName",          // Column doesn't exist in database
          "dataset": "GivenNames"
        }
      ]
    }
  ]
}

Remove the missing column:

{
  "tables": [
    {
      "schema": "dbo",
      "name": "Users",
      "columns": [
        {
          "name": "FirstName",
          "dataset": "GivenNames"
        }
      ]
    }
  ]
}

This documentation contains proprietary information and is protected by copyright law.
Copyright © 2026 Red Gate Software Limited. All rights reserved


Didn't find what you were looking for?