I'm trying to set up an index on a VIEW of mine. First error was 1939, Schema Binding required.
Ok, no problem with that.
ALTER VIEW xyz WITH SCHEMABINDING AS abc
Now, in this VIEW I'm using one local table [dbo].][ReleantTable] and two joined tables from other databases on the same server:
OtherDbName..OtherRelevantTable
Altering the VIEW fails, stating OtherDbName..OtherRelevantTable is invalid for schema binding.
I guess it's just an syntax issue. Could anyone get me hint how to address my OtherDb?