Changes between Version 15 and Version 16 of bertoldi:franquicias

Show
Ignore:
Timestamp:
11/11/24 04:45:47 (6 months ago)
Author:
roberto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • bertoldi:franquicias

    v15 v16  
    188188}}} 
    189189 
    190  
    191  
     1907) '''SECUENCIAS''': 
     191 
     192Si se crea una nueva instancia con un idu_db nuevo por ejemplo que el nuevo sea 30: 
     193{{{ 
     194CREATE SEQUENCE replicacion.seq_instruccion30 START 1; 
     195}}} 
     196 
     197Si es 03 
     198{{{ 
     199CREATE SEQUENCE replicacion.seq_instruccion03 START 1; 
     200}}} 
     201Lo mismo ante una instalación nueva, por cada idu_db crear la secuencia 
     202en cada base. 
     203 
     204Reiniciar secuencias: 
     205{{{ 
     206ALTER SEQUENCE public.rgcomprobantedb RESTART with 1; 
     207}}}