I'm using apex oracle, and I keep getting this violation. If anyone could explain to me why, I would be very grateful.
my code:
CREATE TABLE books
(
book_id INT GENERATED BY DEFAULT AS IDENTITY NOT NULL,
title VARCHAR(255) NOT NULL,
total_pages INT NULL,
rating DECIMAL(4, 2) NULL,
isbn VARCHAR(13) NULL,
published_date DATE NULL,
publisher_id INT NULL,
PRIMARY KEY(book_id),
CONSTRAINT fk_publisher
FOREIGN KEY(publisher_id) REFERENCES publisher(publisher_id)
);
CREATE TABLE authors
(
author_id INT GENERATED BY DEFAULT AS IDENTITY NOT NULL,
first_name VARCHAR(100) NOT NULL,
middle_name VARCHAR(50) NULL,
last_name VARCHAR(100) NULL,
PRIMARY KEY(author_id)
);
CREATE TABLE publisher
(
publisher_id INT GENERATED BY DEFAULT AS IDENTITY NOT NULL,
name VARCHAR(255) NOT NULL,
PRIMARY KEY(publisher_id)
)
I keep getting this error:
ORA-02291: integrity constraint (OANYANWU.FK_PUBLISHER) violated - parent key not found
ORA-06512: at "SYS.DBMS_SQL", line 1721"
What I'm trying to insert:
insert into books (book_id, title, total_pages, rating, isbn, published_date, publisher_id)
values (2, 'Facing the Intelligence Explosion', 91, 3.87, null, '01-02-2013', 109);
Side note: I have had one successful insert, and it was:
insert into books (book_id, title, total_pages, rating, isbn, published_date, publisher_id)
values (1, 'Lean Software Development: An Agile Toolkit', 240, 4.17, '9780320000000', '05-18-2003',5);
so I don't know why I'm getting this error!?
Here is your current failing insert:
This insert would only work if a publisher with id
109
already exists in thepublisher
table. I'm guessing that it doesn't, hence the error. You may verify this with the following query:If this query turns up an empty result set, then you have your answer.