Valiate foreign key example : Foreign Key « Constraints « Oracle PL / SQL

Home
Oracle PL / SQL
1.Aggregate Functions
2.Analytical Functions
3.Char Functions
4.Constraints
5.Conversion Functions
6.Cursor
7.Data Type
8.Date Timezone
9.Hierarchical Query
10.Index
11.Insert Delete Update
12.Large Objects
13.Numeric Math Functions
14.Object Oriented Database
15.PL SQL
16.Regular Expressions
17.Report Column Page
18.Result Set
19.Select Query
20.Sequence
21.SQL Plus
22.Stored Procedure Function
23.Subquery
24.System Packages
25.System Tables Views
26.Table
27.Table Joins
28.Trigger
29.User Previliege
30.View
31.XML
Oracle PL / SQL » Constraints » Foreign Key 




Valiate foreign key example



SQL> create table parentpk int,
  2                       constraint parent_pk primary key(pk) );

Table created.

SQL>
SQL> create table child fk,
  2                       constraint child_fk foreign key(fk)
  3                       references parent deferrable );

Table created.

SQL>
SQL> insert into parent values);

row created.

SQL> insert into child values);

row created.

SQL>
SQL> commit;

Commit complete.

SQL>
SQL> update parent set pk = 2;
update parent set pk = 2
*
ERROR at line 1:
ORA-02292: integrity constraint (JAVA2S.CHILD_FKviolated - child record found


SQL>
SQL> update child set fk = 2;
update child set fk = 2
*
ERROR at line 1:
ORA-02291: integrity constraint (JAVA2S.CHILD_FKviolated - parent key not found


SQL>
SQL> set constraints child_fk deferred;

Constraint set.

SQL>
SQL> update parent set pk=2;

row updated.

SQL>
SQL> select from parent;

        PK
----------
         2

SQL> select from child;

        FK
----------
         1

SQL>
SQL>
SQL> set constraints child_fk deferred;

Constraint set.

SQL> update parent set pk=2;

row updated.

SQL>
SQL> select from parent;

        PK
----------
         2

SQL> select from child;

        FK
----------
         1

SQL>
SQL> set constraints child_fk immediate;
set constraints child_fk immediate
*
ERROR at line 1:
ORA-02291: integrity constraint (JAVA2S.CHILD_FKviolated - parent key not found


SQL> update child set fk = 2;

row updated.

SQL> set constraints child_fk immediate;

Constraint set.

SQL>
SQL> select from parent;

        PK
----------
         2

SQL> select from child;

        FK
----------
         2

SQL>
SQL> drop table parent cascade constraints;

Table dropped.

SQL>
SQL> drop table child cascade constraints;

Table dropped.

SQL>
SQL>
SQL>
           
       














Related examples in the same category
1.Add Foreign key Demo
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.