Can u make a synonym for deptno=10 only from emp table.
Answer Posted / preethi raju
Yes you can create a view for retrieving data of deptno=10 employees and you can create a synonym for it.
create or replace view v2 as select *from emp where deptno=10;
CREATE OR REPLACE SYNONYM sv2
FOR v2;
select *from sv2;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the various constraints used in oracle?
What do you mean by group by clause?
Explain what does a control file contain?
What is the exact use of Collections?
How do we get field detail of a table?
How to manage transaction isolation level?
What is program global area (pga) in oracle?
What is the difference between a user and a schema in oracle?
What is Trigger in Oracle?
Explain temporal data types in oracle
Is it possible to set second Primary Key Constraint in a table in Oracle Database ?
What is a cursor variable?
How many types of synonyms in Oracle?
How do I know if oracle client is installed on windows?
What is blob datatype?