Is it possible to join two tables, that are in two different
users (e.g. SCOTT and HR etc.),but im same database
(e.g. ORCL)?
If yes, then how it is possible?
Explain with step by step procedure.



Is it possible to join two tables, that are in two different users (e.g. SCOTT and HR etc.),but im ..

Answer / suresh babu

yes,it is possible.first create departments table in scott
user,the employees table located in HR user.

Step1:

create table departments as select * from HR.departments;

after execute this query:

select e.first_name,d.department_name from HR.employees
e,SCOTT.departments d where e.department_id = d.department_id;

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Oracle General Interview Questions

Describe an oracle table?

0 Answers  


SQLERRM is a a. Constraint b. Pre Defined Exception c. Pseduocolumn d. Constant e. None of Above.

2 Answers   Cognizant,


What is the string concatenation operator in oracle?

0 Answers  


What are synonyms used for ?

3 Answers  


what are the default admin accounts in Oracle 10g ?

0 Answers   MCN Solutions,






How do we switch from init.ora file to asp file?

2 Answers  


what is the difference between functional dependecy and multilevel dependency?

0 Answers   Oracle,


What is ordinary table in oracle?

0 Answers   MCN Solutions,


What are the various oracle database objects?

0 Answers  


13. Display the second to fifth characters in each client name.

2 Answers   Wipro,


what is RAID technology?which is better RAID 0+1 OR RAID 5?

2 Answers   CSC,


What to do if the binary spfile is wrong for the default instance?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)