Curso de Oracle PLSQL en español desde cero | TRIGGERS, video(16)

preview_player
Показать описание
creación, configuración y uso de los TRIGGERS en Oracle PLSQL

CODIGOS PARA EL EJEMPLO:
--borrar tablas (si existen)
drop table libros;
drop table control;

--crear tablas
create table libros(
codigo number(6),
titulo varchar2(40),
autor varchar2(30),
editorial varchar2(20),
precio number(6,2)
);
create table control(
usuario varchar2(30),
fecha date
);
Рекомендации по теме
Комментарии
Автор

Gracias por tu visita y participar en este curso, si te gusta por favor subscribete, dame tu like y
comparte para seguir creciendo y publicando mas lecciones, esto me ayudaría mucho.
COLABORACION: paypal.me/informaticonfig

informaticonfig
Автор

Muchas gracias por compartir sus vídeos. 👏👏👏

lunaocean
Автор

excelente video; tuve un pequeño problemita porque mi usuario no tenia privilegios para crear triggers pero sólo fue eso. muchas gracias

andresbetag
Автор

🙏🙏It was fabulous . just provide 👍👍exact clarity . 😍😍what I was👍👍 looking for

computerlearningbyargusaca
Автор

todo me funciona except la consulta para obtener información tecnica del trigger, ¿que sucedera?


--script para consultar informacion tecnica del trigger
select * from user_triggers where trigger_name = 'tr_ingresolibros';

andresbetag
Автор

🙏🙏It was fabulous . just provide 👍👍exact clarity . 😍😍what I was👍👍 looking for

computerlearningbyargusaca