I got ORA-00907: missing right parenthesis. I believe I have right pairs of parenthesis. I'm trying to pass a reference of service type to employee type when I insert an employee record.

INSERT INTO Person VALUES 
 (FullTimeEmployeeType (1, 
                       NameType('David', 'R', 'Jones'),
                       'M',  
                       AddressType('123 somewhere', '', 'London', 'UD', '84042'), 
                       '8030349092','',
                       '1978-05-26', 
                       REF <servicerType>, 
                       40000)
 );
link|improve this question

80% accept rate
feedback

2 Answers

I count 4 "(" and 3 ")"

link|improve this answer
I count 4 "(" and 4 ")" – Nate Dec 7 '10 at 21:03
You're right - I missed the scroll so the one after 'Jones' wasn't visible. – RogerG Dec 7 '10 at 21:29
feedback

Looks like the REF expects brackets rather than a < >

SELECT REF(p) 
  FROM person_obj_table p
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.