Upload files to "/"

This commit is contained in:
2026-05-08 13:08:08 +00:00
commit dc6c1662ed
5 changed files with 1520 additions and 0 deletions

8
biu_tb_26ai_tech.sql Normal file
View File

@@ -0,0 +1,8 @@
create or replace TRIGGER "BIU_TB_26AI_TECH"
before insert or update
on TB_26AI_TECH
for each row
begin
:new.ID_INSIGHT := SEQ_26AI_TECH.NEXTVAL;
end;
/