TSD3024: The following cross-database dependencies of {referencing object} could not be verified: {list}. You might not be able to deploy the project.

This warning appears when an object definition references an object in another database on the same server. If that referenced object does not exist when you deploy your database project, deployment will fail.

To correct this error

  • Define a cross-database reference, and use it in your object definition. For more information, see How to: Create Cross-Database References.

    Important

    If you define a cross-database reference, you must build the solution to resolve the warnings that appear in the Error List window.

Example

This warning appears in an example such as the following:

CREATE VIEW View1
AS 
SELECT * FROM [DatabaseName].[SchemaName].[TableName];

See Also

Concepts

Terminology Overview of Team Edition for Database Professionals

Other Resources

Overview of Cross-Database References