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' 无效。
提示

参考技术A 1、CustomerInformation表不存在。检查一下表名是不是写错了
2、解发器内用INSERTED:
update RoomInformation
set Rstate=1
where RoomInformation.Rno in (select Rno from inserted)

以上是关于oracle job提示无效数据库对象名的主要内容,如果未能解决你的问题,请参考以下文章

ms sql变量问题:提示参数对象无效!

SQL数据库时提示对象名'XXX' 无效

ASP.NET问题 非常急 登录后台提示: 对象名 'admin' 无效。

oracle数据库报无效数字?

oracle数据库中怎么看job跑没跑完?

我要在oracle 10g创建一个job,每天凌晨9点执行一个过程,过程名假定为 pro_1001 谢谢指点