Name | Data Type | Default Value | In/Out |
---|---|---|---|
NAME_IN | VARCHAR2 | IN |
Legend: comment string keyword reserved word operator
1: function insert_source_name(name_in in varchar2) 2: return number 3: is 4: pragma autonomous_transaction; 5: source_id number; 6: begin 7: insert into rhnSourceRPM(id, name) 8: values (rhn_sourcerpm_id_seq.nextval, name_in) returning id into source_id; 9: commit; 10: return source_id; 11: end;