✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Indiquez le type d'exception levée par ce sous programme
create or replace procedure lire_données (pidservice in Services.IdService%type, pNom in Services.Nom%Type, pEtage in Services.Etage%Type ) as
violation_contrainte_check exception;
pragma exception_init (violation_contrainte_check, -02290);
Begin
insert into Services values (pidService, pNom, pEtage);
Exception when violation_contrainte_check then
dbms_output.put_line('pb de contrainte de domaine l''étage est entre 1 et 5 ');
END ;