I mean selecting from the view like this:
SELECT SomeColumn
FROM SomeTableSecondDatabase
Returns different data to this:
SELECT SomeColumn
FROM SecondDatabase.dbo.SomeTable
I.e. querying the table direct returns different data from the same column. Obviously the correct...