Missing table

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

How to fix

Remove the table from the masking configuration.

Problem example:

{
  "tables": [
    {
      "schema": "dbo",
      "name": "Users",
      "columns": [
        {
          "name": "FirstName",
          "dataset": "GivenNames"
        }
      ]
    },
    {
      "schema": "dbo",
      "name": "Customers",               // Table doesn't exist in database
      "columns": [
        {
          "name": "CustomerName",
          "dataset": "FullNames"
        }
      ]
    }
  ]
}

Remove the missing table:

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

Didn't find what you were looking for?