I have a database on my on-premise SQL Server (SQL Server 2019 Developer edition) that have many views and stored procedures that reference another database, so from database A I have
SELECT *
FROM [DatabaseB].[dbo].[TableName]
Both extracting a data-tier application and deploying to Azure fails because of this.
UPDATE
Example Error Log Entry:
Error SQL71561: Error validating element [cp].[GL_Transactions_All]: View: [cp].[GL_Transactions_All] has an unresolved reference to object [DYNAMICS].[dbo].[MC40200].
How can I migrate both databases at the same time to my Azure SQL database?