我正在尝试在SSIS OLEDB COMMAND中运行此查询但由于某种原因我收到此错误(请参阅镜头)
update district set district.districtname=?
from district inner join city on district.id=city.districtid
where city.fdocode=? and city.taxcode=?
答案 0 :(得分:2)
尝试:
update d
set districtname = ?
from district d inner join city c on d.id=c.districtid
where c.fdocode=? and c.taxcode=?
答案 1 :(得分:0)
0x80004005消息通常意味着某种访问冲突。
您是否检查过运行该命令的身份可以发出命令?这应该很容易通过运行SQL事件探查器来确认SQL Server获取命令。
确定这一点