1.105.  setmovesequence_int( integer, integer )

Propriétés de la fonction
Langage: PLPGSQL
Type du code retour: integer

Traite l'événement SET_MOVE_SEQUENCE, déplaçant une séquence vers un autre ensemble de réplication.

declare
        p_seq_id                        alias for $1;
        p_new_set_id            alias for $2;
begin
        -- ----
        -- Grab the central configuration lock
        -- ----
        lock table sl_config_lock;
        
        -- ----
        -- Move the sequence to the new set
        -- ----
        update sl_sequence
                        set seq_set = p_new_set_id
                        where seq_id = p_seq_id;

        return p_seq_id;
end;