Answer Posted / harsha vardhan reddy
1.It is a LOGICAL and VIRTUAL object.
2.It is stored select statement.
3.It allows DESCRIBE,DML,SELECT on it.
4.It will not hold data in it.
5.It supports to share "selected rows and columns with
other user"
6.It provides security while sharing.
regards,
harsha518@gmail.com
harsha.vardhan@cmcltd.com
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is execute immediate in oracle?
Explain oracle left join with an example?
What is pragma autonomous transaction in oracle?
State the various uses of dbcc command?
What is the difference between formal parameters and actual parameters?
What is Undo Management Advisor in Oracle?
Hi Masters, in Oracle Applications 11i, we hace 2 functions using the same form, i need to create 1 personalization, but that code must afect only one function.... how can i do that?
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
How do I decide when to use right joins/left joins or inner joins or how to determine which table is on which side?
Is primary key indexed by default in oracle?
Whats the benefit of dbms_stats over analyze?
How to assign a tablespace to a users in oracle?
How to run create database statement again?
What is a nested table and how is it different from a normal table?
Is there a function to split a string in plsql?