http://shrani.si/f/S/52/2l8ZPmn7/stack.jpg
I have problem in a M:1 relation. I have entity named "zaposleni" (M) and entity named "zapori" (1). The problem appears when I want to execute my procedure. Error says that my parent key wasn't found, even tho I have filled my zapori entity with 20 examples. When I use "dbms_output.put_line" to see what procedure returns (before INSERT statement), procedure returns only 1 and 0, sometimes 2 or 4. I know that procedure should have returned numbers form 1 to 20.
SQL looks like this: http://shrani.si/f/45/Nt/ig2Gi8t/stack2.jpg
Now I need to know why this happens and I would be thankful if someone could resolve this or atleast help me with some advices.
SQL Code:
CREATE OR REPLACE PACKAGE BODY ui AS
PROCEDURE polni_zaposleni(stevilo_zaposleni NUMBER) IS
id_za NUMBER(10);
ime VARCHAR2(20);
priimek VARCHAR2(20);
del_doba VARCHAR2(20);
id_z NUMBER(10);
id_z_count number:= 0;
BEGIN
select count(1)
into id_z_count
from zaporniki;
FOR st IN 1..stevilo_zaposleni LOOP
id_z := dbms_random.value(1, id_z_count);
ime := 'Ime';
priimek := 'Priimek';
del_doba := 'Del_doba';
ime := ime||' '|| TO_CHAR(st);
priimek := priimek ||' '|| TO_CHAR(st);
del_doba := del_doba ||' '|| TO_CHAR(st);
dbms_output.put_line(id_z);
--INSERT INTO ZAPOSLENI (ID_ZA, IME, PRIIMEK, DEL_DOBA, ID_Z)
--VALUES (st, ime, priimek, del_doba, id_z);
--dbms_output.put_line(st);
END LOOP;
END;
END ui;
It appears to be working fine on SQL Fiddle.
Oracle 11g R2 Schema Setup:
Query 1:
Results:
Query 2:
Results:
Query 3:
Results: