Can u make a synonym for deptno=10 only from emp table.
Answer / 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 |
What is a read only transaction in oracle?
List out the types of joins.
Explain view?
What is the fastest query method to fetch data from the table?
What privilege is needed for a user to query tables in another schema?
How to convert the date format from dd/mm/yyyy to mm/dd/yyyy. (for eg). 22/05/2008 to 05/22/2008. when u use to_char(), it tells the month is invalid. how to resolve this problem.tel with eg.
how to retrieve data from different tables ,place this data in different excel worksheets.
What is the maximum limit on the number of columns in a table?
What is the function of Optimizer ?
What are the values that can be specified for OPTIMIZER MODE Parameter ?
How to open a cursor variable?
How would you extract DDL of a table without using a GUI tool?