Posts by EdgarHygino • 7 points
3 posts
-
-1
votes1
answer46
viewsA: Trigger to prevent repeated data on ORACLE
I managed to solve, it follows below CREATE OR REPLACE TRIGGER R_APONTAMENTO_SERVICO_DUPLICIDADE_BLOCK BEFORE INSERT ON EVENTO_APONTAMENTO_SERVICO FOR EACH ROW DECLARE Evento varchar2(50); CURSOR…
-
-1
votes1
answer46
viewsQ: Trigger to prevent repeated data on ORACLE
Opa personal I am trying to create a Trigger to prevent the entry of repeated data in Oracle but am not succeeding. You cannot use Constraint Unique, because I will have repeated data, because it is…
-
0
votes1
answer43
viewsQ: How to call a function by loading a string in Django?
I’m new to Django and I’m testing, In case I have my.html posts and wanted to load all posts summarized on the page, but one side would load the posts with id pair and the other side with id odd. I…