i want to insert Data in my Oracle Database. My Tables are already successfully created. When i now want to do this:
INSERT INTO FITNESS_EXERCISE (NAME, DESCRIPTION, E_SETS, REPS, WEIGHT, DURATION) VALUES ("Curl KH", "Curl mit der Kurzhantel für den Bizeps", "3", "8 - 12", NULL, NULL);
I get this Error:
ORA-00972 identifier is too long
But actually it isnt oO
If i count it is a 16 character identifier not a 30 character identifier.
What is going on here?