Excluded table not found
Published 06 March 2025
An excluded table could not be found in the database.
How to fix
- Check your options file - locate the table name under
excludedTables
- Verify the table exists in your source database
- Check spelling and casing - table names are case-sensitive
- Confirm schema name - ensure you're using the correct schema
Common Issues
Wrong schema: "schema": "dbo", "name": "Users"
when table is actually in public
schema
Case sensitivity: "name": "users"
when table is actually Users
Typos: "name": "Costumers"
instead of "name": "Customers"