I want to find the foreign keys of a table but there may be more than one user / schema with a table with the same name. How can I find the one that the currently logged user is seeing? Is there a function that gives its owner? What if there are public synonyms?
|
You can query the ALL_OBJECTS view:
To find synonyms:
Just to clarify, if a If you are looking specifically for constraints on a particular table_name:
HTH -- addendum: If your user is granted access to the DBA_ views (e.g. if your user has been granted SELECT_CATALOG_ROLE), you can substitute ' |
||||
|
|
|
Interesting question - I don't think there's any Oracle function that does this (almost like a "which" command in Unix), but you can get the resolution order for the name by:
|
|||
|
|
|
Oracle views like ALL_TABLES and ALL_CONSTRAINTS have an owner column, which you can use to restrict your query. There are also variants of these tables beginning with USER instead of ALL, which only list objects which can be accessed by the current user. One of these views should help to solve your problem. They always worked fine for me for similar problems. |
|||
|
|
|
To find the name of the current user within an Oracle session, use the Note that the owner of the constraint, the owner of the table containing the foreign key, and the owner of the referenced table may all be different. It sounds like it’s the table owner you’re interested in, in which case this should be close to what you want:
|
||||
|
|