oracle job提示无效数据库对象名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle job提示无效数据库对象名相关的知识,希望对你有一定的参考价值。
参考技术A Job Action关联的Program对象失效了 参考技术B 可能是失效,也有可能是没权限创建触发器,对象名无效
create trigger insert_customer
on CustomerInformation
for insert,update
as
update RoomInformation
set Rstate=1
where RoomInformation.Rno in (select Rno from CustomerInformation)
SQL语句
服务器: 消息 208,级别 16,状态 4,过程 insert_customer,行 1
对象名 'CustomerInformation' 无效。
提示
2、解发器内用INSERTED:
update RoomInformation
set Rstate=1
where RoomInformation.Rno in (select Rno from inserted)
以上是关于oracle job提示无效数据库对象名的主要内容,如果未能解决你的问题,请参考以下文章