我将数据库存储在共享网络文件夹中。其他人和我运行选择查询没有问题,但有些人无法运行它们。他们收到错误消息"无法更新数据库或对象是只读"。我已经读过没有聚合或分组的可更新查询规则,但有没有办法继续查看查询?
以下是其中一个查询的示例:
SELECT Questions.Year, round(Avg(Answers.[Answer (#)]),1) AS [Average Insight and Innovation]
FROM Questions INNER JOIN Answers ON Questions.[Access ID] = Answers.QuestionID
WHERE (Questions.[Question Text]) Like '*innovation*' And (Questions.[Question Text]) Not Like 'What would you like to see Unisys do to improve the level of insight and innovation?' And (Questions.[Question Text]) Not Like '*Why aren’t you completely satisfied?*' And (Questions.[Question Text]) Not Like 'What does innovation mean to you?' And Answers.[Answer (#)] is not null
GROUP BY Questions.Year
ORDER BY Questions.Year;