Error code

SQL Server 208

SQL SERVER208
Database Error Code· An error code returned by a database server such as PostgreSQL or MySQL.

What it means

invalid object name — the table or view does not exist.

How to fix it

  1. Verify the object name and schema with SELECT * FROM INFORMATION_SCHEMA.TABLES.
  2. Run pending migrations that create the object.
  3. Prefix the object name with the correct schema (e.g. dbo.TableName) to resolve cross-schema references.

Not affiliated with SQL Server. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.