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_SYSTEM

DDL script

Arguments:

NameData TypeDefault ValueIn/Out
SYSTEM_INVARCHAR2 IN

Returns:

NUMBER(38)

Source

Legend: comment string keyword reserved word operator
     1: function insert_xccdf_ident_system(system_in varchar2)
     2: return number
     3: is
     4:     pragma autonomous_transaction;
     5:     ident_sys_id number;
     6: begin
     7:     insert into rhnXccdfIdentSystem (id, system)
     8:     values (rhn_xccdf_identsytem_id_seq.nextval, system_in) returning id into ident_sys_id;
     9:     commit;
    10:     return ident_sys_id;
    11: end;