Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Referencing Package from another schema
Hi,
I'm trying to reference a package from another schema in a trigger...
The trigger code is:
BEGIN
SELECT <seq_name>.nextval
INTO other_schema.global_package.identity -- Where identity is a
global variable
FROM dual;
:new.TEXTID:=other_schema.global_package.identity;
END;
I get the following error message:
Error Text = PLS-00201: identifier 'other_schema.global_package' must be declared.
The package that I created works fine. Any ideas? thanks Received on Tue Dec 28 2004 - 09:40:56 CST