You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the "Invalid objects" check if a proc (for instance) references an entity on another database (on the same server) the reference is considered invalid/missing.
Consider:
DatabaseA
Tables
MyTable1
DatabaseB
Procs
MyProcB
begin
select * from DatabaseA.dbo.MyTable1
end
When running the "Invalid objects" test the above will fail as no reference to "MyTable1" will be found in the "DatabaseB" database.
The text was updated successfully, but these errors were encountered:
When running the "Invalid objects" check if a proc (for instance) references an entity on another database (on the same server) the reference is considered invalid/missing.
Consider:
begin
select * from DatabaseA.dbo.MyTable1
end
When running the "Invalid objects" test the above will fail as no reference to "MyTable1" will be found in the "DatabaseB" database.
The text was updated successfully, but these errors were encountered: