i have a table called p_relations which has 4 columns employeename, access, manager_name, comments and i can get these details from the table p_employees which has emp_id, name, manager_id .
For example in p_employees table i have this data:
1001 kiran 2001
2001 rahul 3001
now in p_relations table i have to insert the data like this
kiran 1 rahul
actually we have to insert bulk data . could you please sugget me the procedure or query for this.
i developed simple procedure but it doesnt work:
DECLARE
e_name VARCHAR2(20);
m_name VARCHAR2(20);
manager_id VARCHAR2(20);
CURSOR c_lecturer IS
SELECT name,manager_id FROM p_employees;
BEGIN
OPEN c_lecturer;
LOOP
FETCH c_lecturer INTO e_name, manager_id;
SELECT name INTO manager_name FROM WKS_CONT.SIBER_EMPLOYEES WHERE emp_id=manager_id;
INSERT INTO p_relations VALUES(e_name, ,1,manager_name);
EXIT WHEN c_lecturer%NOTFOUND;
END LOOP;
CLOSE c_lecturer;
END;
Please help me on this
e_name VARCHAR2(20): names length can't be more than 20? – Florin Ghita Feb 13 '12 at 15:13