Seaquel
SQL Server error code

SQL Server error 4104

SQL Server raises error 4104 at severity 16, which marks a problem with the query or data that you can correct.

The multi-part identifier "%.*ls" could not be bound.
Msg4104
NameALG_MULTI_ID_BAD
Severity16
Group4000–4999

What it means

The name of an entity in SQL Server is referred to as its identifier. You use identifiers whenever you reference entities, for example, by specifying column and table names in a query. A multi-part identifier contains one or more qualifiers as a prefix for the identifier. For example, a table identifier may be prefixed with qualifiers such as the database name and schema name in which the table is contained, or a column identifier may be prefixed with qualifiers such as a table name or table alias.

Source: Database Engine events and errors