Excluded table with no name error
Published 06 March 2025
A table in the excluded tables list is missing a name property.
How to fix
Add the missing name property to the excluded table entry.
Common issues
Missing name:
{
"excludedTables": [
{
"schema": "dbo"
// Missing "name" property
}
]
}Fixed:
{
"excludedTables": [
{
"schema": "dbo",
"name": "TableName"
}
]