Answer Posted / orawhiz
A rule defined on a column (or set of columns) in one table
that allows the insert or update of a row only if the value
for the column or set of columns (the dependent value)
matches a value in a column of a related table (the
referenced value). It also specifies the type of data
manipulation allowed on referenced data and the action to be
performed on dependent data as a result of any action on
referenced data.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is meant by an index?
How to define an oracle sub procedure?
How many types of database triggers exist?
How do you store pictures in a database?
What happens if you set the sga too low in oracle?
What are the differences between lov and list item?
How to get a list of all background sessions in the database?
Explain what are the characteristics of data files?
How to build data dictionary view an new database?
Can we write dml statement in function in oracle?
20. Using a set operator, display the client number of all clients who have never placed an order.
What is a table index in oracle?
What is bulk load in oracle?
> 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 pass a cursor variable to a procedure?