Foreign keys in alternate schemas with Oracle? Foreign keys in alternate schemas with Oracle? oracle oracle

Foreign keys in alternate schemas with Oracle?


You need to:

grant references on "FRED"."ITEMS" TO "BOB"

See this "AskTom"


To create a foreign key referencing a table in another schema you need the "REFERENCES" privilege:

GRANT REFERENCES ON FRED.ITEMS TO BOB;