Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This error occurs when an object definition contains three or more parts where only a two-part name, of the format [Schema].[ObjectName], is expected.
To correct this error
- Remove the additional qualifiers, and name the object by using only the [Schema].[ObjectName] syntax.
Example
This error appears if you create an object, such as a view, and give it a three-part name, as the following example shows:
CREATE VIEW DatabaseName.SchemaName.View1
AS
SELECT * FROM t1;