Answer Posted / ramon
With schemabinding
the view have to be attache with schemabinding on it. Yes it is possible
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are bitmap indexes? How does they work?
What are the different windows events activated at runtime ?
What are the different pseudo commands? Explain in general?
what is partitioning? Types of partitioning. explain? what is the new kind of partitioning type introduced in 9i?
20. Using a set operator, display the client number of all clients who have never placed an order.
How many memory layers are in the oracle shared pool?
> 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 to synchronize 2 schema's objects?
How to add a new column to an existing table with a default value?
How to start a new transaction in oracle?
How to define a record variable to store a table row?
What is the difference between $oracle_base and $oracle_home?
How remove data files before opening a database?
What are the general rules on data consistency?
why should i declare foreign key constraint as self relation instead of binary relation in tables ?