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
Point out the difference between user tables and data dictionary?
How to convert times to characters in oracle?
What is oracle sid?
does the query needs a hint to access a materialized view?
Explain an index?
Whats the benefit of dbms_stats over analyze?
How to grant create session privilege to a user in oracle?
What are named parameters?
Explain the function of optimizer in oracle?
What is a read only transaction in oracle?
Can we convert a date to char in oracle and if so, what would be the syntax?
What is meant by a deadlock situation?
How to create a new table by selecting rows from another table?
From the following identify the non schema object: packages, triggers, public synonyms, tables and indexes.
what is the difference between substr and instr function in oracle?