From 748f0c51571aa551afccda0c3a5186b366664e85 Mon Sep 17 00:00:00 2001 From: Ronny Grobel Date: Thu, 9 Jun 2022 08:40:54 +0200 Subject: [PATCH] Update table.sql add Create Sequence --- sql/table.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sql/table.sql b/sql/table.sql index 040f9ed..30e7b1c 100644 --- a/sql/table.sql +++ b/sql/table.sql @@ -14,6 +14,8 @@ CREATE TABLE "SYSLOG" ) NO INMEMORY / +CREATE SEQUENCE "SYSLOG_SEQ" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 241 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE GLOBAL +/ CREATE OR REPLACE EDITIONABLE TRIGGER "BI_SYSLOG" before insert on "SYSLOG"