Main Tables Views Materialized Views Indexes Constraints Triggers Procedures Functions Packages Sequences Java Sources Jobs Sanity Check Index DDL scrips
Arguments Source

INSERT_XCCDF_IDENT

DDL script

Arguments:

NameData TypeDefault ValueIn/Out
IDENT_SYS_IDNUMBER(38) IN
IDENTIFIER_INVARCHAR2 IN

Returns:

NUMBER(38)

Source

Legend: comment string keyword reserved word operator
     1: function insert_xccdf_ident(ident_sys_id number, identifier_in in varchar2)
     2: return number
     3: is
     4:     pragma autonomous_transaction;
     5:     xccdf_ident_id  number;
     6: begin
     7:     insert into rhnXccdfIdent (id, identsystem_id, identifier)
     8:     values (rhn_xccdf_ident_id_seq.nextval, ident_sys_id, identifier_in) returning id into xccdf_ident_id;
     9:     commit;
    10:     return xccdf_ident_id;
    11: end;