↧
Answer by A.B.Cade for Foreign keys in alternate schemas with Oracle?
You need to:grant references on "FRED"."ITEMS" TO "BOB"See this"AskTom"
View ArticleAnswer by Tony Andrews for Foreign keys in alternate schemas with Oracle?
To create a foreign key referencing a table in another schema you need the "REFERENCES" privilege:GRANT REFERENCES ON FRED.ITEMS TO BOB;
View ArticleForeign keys in alternate schemas with Oracle?
I have two schemas, let's call them BOB and FRED. I need to call a table in schema FRED from schema BOB to use the primary key in that table as a foreign key. I've set up the appropriate grants for...
View Article