I have a very simplistic UNION View:
ALTER VIEW [dbo].[CD_qryAllMatch]
AS
Select *
from [dbo].[CD_qryFacetsMatch]
UNION
Select *
from [dbo].[CD_qryNonFacetsMatch]
Every once in a while, I'll need to add a new field in the source table. I'll add that field to CD_qryFacetsMatch and CD_qryNonFacetsMatch. No problem. They appear fine. Then I'll run this CD_qryAllMatch UNION View, and the fields aren't there. They're in the source table and in the source Views, but they're not appearing in the UNION View.
Is there some trick to getting new fields to appear in UNION Views? I've refreshed the View folder and refreshed the database folder and they're still not appearing.