I have the following constraint:
ALTER TABLE Movie
ADD CONSTRAINT NomsRANGE
CHECK (totalNoms BETWEEN 0 AND 20);
...and used the following to try and test it:
INSERT INTO Movie
(totalNoms)
VALUES
('23');
I get the following error:
cannot insert NULL into ("ALI"."MOVIE"."MOVIEID")
My scheme is:
Actor (actorID, lastName, firstName, middleName, suffix, gender, birthDate, deathDate)
Movie (movieID, title, year, company, totalNoms, awardsWon, DVDPrice, discountPrice)
Quote (quoteID, quote)
Role (roleID ,roleName ,gender ,actorID* ,movieID*)
RoleQuote (roleID*, quoteID*)
And my relationships are:
CONSTRAINT_NAME C
------------------------------ -
QUOTE_FK R
ROLE_FK R
MOVIE_ROLE_FK R
ACTOR_ROLE_FK R
ACTORID P
MOVIEID P
QUOTEID P
ROLEID P
ROLEQUOTEID P
9 rows selected.
Answer:
The answer was simple none of you spotted this it took me all day but i solved it so am posting solution so it helps others.
INSERT INTO Movie(movieID, totalNoms) VALUES('049', '22');
I missed the first value which was the primary key as the error was saying:
cannot insert NULL into ("ALI"."MOVIE"."MOVIEID")
When i entered a new primary key it showed the constraint was violated
Thank you guys for all the help
Movieidis initialised asnot nullright? – Ben Feb 26 '12 at 21:37movieid. You also don't need quotes around the values if they arenumbercolumns. – Alex Poole Feb 28 '12 at 8:04'23'can is coerced into a (invalid) numeric value? That Oracle itself does not have any bugs that prevent a very trivial constraint from working? That the table does not have triggers that will bite before theCHECKdoes? At face value, your test doesn't seem to amount to much. Perhaps you should instead consider whether the code correctly implements the spec e.g. when the designer said, "...values up to 20" did they intend for 20 to be valid? What about nulls and other edge cases? etc – onedaywhen Feb 28 '12 at 11:36