First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
declare
n number;
begin
select max(lov_id) + 1 into n from dbcgo_lov ;
DBMS_OUTPUT.Put_Line ('next lov id: ' || n);
begin
EXECUTE IMMEDIATE ('drop sequence seq_lov');
exception
when others then
null;
end;
EXECUTE IMMEDIATE ('create sequence seq_lov start with ' || n);
end;
/
show errors;