Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is linking multiple Oracle schemas clean?

Status
Not open for further replies.

jbullman

Instructor
Jan 7, 2002
34
US
If we use a command with a simple select statement that links tables from multiple schemas, does that involve any of the issues of linking multiple databases? The command looks like:

select name, street
from schema1.employee, schema2.address
where schema1.employee_id = schema2.employee_id

Thanks for your input.

Judith

Judith Ullman
Metro New York Crystal Decisions Training and Consulting Partner
 
No, it should work fine.

Paste it in and run, although I'd suggest creating a View rather than pasting in SQL, it simplifies maintenance and allows for reusability.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top