When creating a new Local View from a linked server on a foreign server that has different source view collation, is it correct that all of the Local View's column collations inherit the same type based on the DB that's it's within ?
If yes then would then trying to do the following be pointless ?
ALTER VIEW [dbo].[LocalCustomersView]
AS
SELECT
CustomerCode COLLATE SQL_Latin1_General_CP1_CS_AS AS CustomerCode
FROM [LinkedForeignServer].[ForeignCustomersDB].[dbo].[ForeignCustomersView]
Thanks in advance.