Manual relationship table not found
Published 06 March 2025
A manual relationship is defined using a table that cannot be found in the database.
How to fix
- Check your options file - locate the manual relationship under
manualRelationships
- Verify table names in both
sourceTable
andtargetTable
objects - Check spelling and casing - table names are case-sensitive
- Confirm schema names - ensure you're using the correct schema
- Verify the tables exist in your source database
Common Issues
Wrong schema: "schema": "dbo"
when table is actually in public
schema
Case sensitivity: "name": "users"
when table is actually Users
Typos: "name": "Costumers"
instead of "name": "Customers"
Missing table: Referenced table doesn't exist in the database