Hi,
I have read many of the threads relating to this error, and have tried some of the things in those threads with no sucess. Here is the situation:
I have a table called ForecastedSvcLvl1
I have a query called FCST_SL_QUERY_2
I am trying to update 2 fields in the table for various days using the query. The SQL is as follows:
UPDATE ForecastedSvcLvl1 INNER JOIN FCST_SL_QUERY_2 ON (ForecastedSvcLvl1.ForecastDate = FCST_SL_QUERY_2.FORECASTDATE) AND (ForecastedSvcLvl1.Group = FCST_SL_QUERY_2.CTNAME) SET ForecastedSvcLvl1.FcstSvcLvl = [FCST_SL_QUERY_2].[FCST_SL], ForecastedSvcLvl1.LastModified = [FCST_SL_QUERY_2].[Last_Modified];
I am getting the "Operation must use an updateable query" error. Any help would be greatly appreciated. Thanks.
I have read many of the threads relating to this error, and have tried some of the things in those threads with no sucess. Here is the situation:
I have a table called ForecastedSvcLvl1
I have a query called FCST_SL_QUERY_2
I am trying to update 2 fields in the table for various days using the query. The SQL is as follows:
UPDATE ForecastedSvcLvl1 INNER JOIN FCST_SL_QUERY_2 ON (ForecastedSvcLvl1.ForecastDate = FCST_SL_QUERY_2.FORECASTDATE) AND (ForecastedSvcLvl1.Group = FCST_SL_QUERY_2.CTNAME) SET ForecastedSvcLvl1.FcstSvcLvl = [FCST_SL_QUERY_2].[FCST_SL], ForecastedSvcLvl1.LastModified = [FCST_SL_QUERY_2].[Last_Modified];
I am getting the "Operation must use an updateable query" error. Any help would be greatly appreciated. Thanks.