Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-02449: unique/primary keys in table referenced by foreign keys

891947Oct 2 2011 — edited Oct 3 2011
SQL> create table empinformation
2 (
3 mobileno number(6) constraint pk_empinformation primary key,
4 address varchar(100),
5 salary number(10),
6 personalid varchar(10) constraints fk_employees_section references employee(emp_id) );

Table created.


SQL>drop table empinformation;

ORA-02449: unique/primary keys in table referenced by foreign keys
This post has been answered by Ritesh Singh on Oct 3 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 31 2011
Added on Oct 2 2011
3 comments
30,275 views