Can we relate two different tables from two different users
in ORACLE,PL/SQL?
Answer Posted / shilpa.oracle
Yes, we can relate tables of different schemas provided we
should have privileges on that table
create table test_emp
(empno number(5),deptno number(5),constraint dept_ref
foreign key (deptno) references schema.dept(deptno))
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What do you think about pl/sql?
mention if it is possible to import data directly from t-sql commands without using sql server integration services? If yes, what are the commands? : Transact sql
what is the difference between primary key and unique key? : Sql dba
What are sql*plus environment variables?
How to pronounce postgresql?
- Types of triggers - View - Dcl - Procedures, packages, functions - Metasolve - Can use Dcl in triggers - package case study - Cursor and its types - triggers schedule - Wrap - Why we are using fetch and for in cursor. difference?
Explain character-manipulation functions?
what is the difference between rownum pseudo column and row_number() function? : Sql dba
what is the maximum length of a table name, database name, and fieldname in mysql? : Sql dba
What is indexing oracle sql?
Can 2 queries be executed simultaneously in a distributed database system?
What is the difference between alter trigger and drop trigger statements?
How does a covering index work?
What does data normalization mean?
Can we join same table in sql?