Okies, letting it all sink in...
here is what I can run successfully in the analyzer but when i try to use the same exact thing and save as new view it will not let me.
Code:
SELECT TOP 100 PERCENT dbo.tblHRActual.LocID, dbo.tblHRActual.HRActualDt, dbo.tblHRActual.HRActual, 1 as isActual
from dbo.tblHRActual
union all
SELECT TOP 100 PERCENT dbo.tblHRForecast.LocID,dbo.tblHRForecast.HRForecastDt, dbo.tblHRForecast.HRForecast, 0 as isActual
from dbo.tblHRForecast
Code:
The Query Designer does not support the UNION SQL construct.
Bookmarks