From 1a7cd94721fbcb1099dee20bae83bfa49728c195 Mon Sep 17 00:00:00 2001 From: Thomas Risberg Date: Tue, 19 Jan 2016 15:33:39 -0500 Subject: [PATCH] Adding NOCACHE to sequence TASK_SEQ Resolves #63 --- .../org/springframework/cloud/task/schema-oracle10g.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-oracle10g.sql b/spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-oracle10g.sql index 3bee19f2..5fe68416 100644 --- a/spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-oracle10g.sql +++ b/spring-cloud-task-core/src/main/resources/org/springframework/cloud/task/schema-oracle10g.sql @@ -18,4 +18,4 @@ CREATE TABLE TASK_EXECUTION_PARAMS ( references TASK_EXECUTION(TASK_EXECUTION_ID) ) ; -CREATE SEQUENCE TASK_SEQ START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NOCYCLE; \ No newline at end of file +CREATE SEQUENCE TASK_SEQ START WITH 0 MINVALUE 0 MAXVALUE 9223372036854775807 NOCACHE NOCYCLE; \ No newline at end of file