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.
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 |
Explain the use of log option in exp command.
select * from emp what happened internally when we write this query in the sql prompt?
If a parameter is used in a query without being previously defined, what diff. exist betw. report 2.0 and 2.5 when the query is applied ?
How to define a record variable to store a table row?
What are synonyms used for ?
Is oracle an operator?
Which are the five query types available in oracle?
How to bring a tablespace online?
What is the maximum limit on the number of columns in a table?
10)In an RDBMS, the information content of a table does not depend on the order of the rows and columns. Is this statement Correct? A)Yes B)No C)Depends on the data being stored D)Only for 2-dimensional tables
Is truncate autocommit in oracle?
how can find the second max sal for every group(i.e i want group the data based on key and find the second max sal for every group