Advertisement
Guest User

Untitled

a guest
May 5th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 0.58 KB | None | 0 0
  1. Index1 INT;
  2. Indice INT;
  3.  
  4.  
  5. Indice := 0;
  6.  
  7. FOR i IN 1..SQL%BULK_EXCEPTIONS.COUNT LOOP
  8.    Index1 := SQL%BULK_exceptions(i).error_index ;
  9.    tab_AjouterExc(Indice).NumErreur := SQL%BULK_exceptions(i).error_code;
  10.    tab_AjouterExc(Indice).Formation := tab_Groupe(Index1).REFFORMDET;
  11.    tab_AjouterExc(Indice).REFGROUPE := tab_Groupe(Index1).REFGROUPE;
  12.    tab_AjouterExc(Indice).ANNETUD := tab_Groupe(Index1).ANNETUD;
  13.    tab_AjouterExc(Indice).ANSCO := tab_Groupe(Index1).ANSCO;
  14.    tab_AjouterExc(Indice).REFIMPLAN := tab_Groupe(Index1).REFIMPLAN;
  15.    Indice := Indice +1;
  16.   END LOOP;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement