Skip to content
Snippets Groups Projects
Commit 496b5bb8 authored by Steven Murray's avatar Steven Murray
Browse files

Following on from GitLab issue cta/CTA#371, replaced INTEGER with NUMERIC(20,...

Following on from GitLab issue cta/CTA#371, replaced INTEGER with NUMERIC(20, 0) within oracle_catalogue_schema_header.sql
parent 9aabea41
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ CREATE SEQUENCE STORAGE_CLASS_ID_SEQ
CACHE 20
NOORDER;
CREATE GLOBAL TEMPORARY TABLE TEMP_TAPE_FILE_BATCH(
ARCHIVE_FILE_ID INTEGER
ARCHIVE_FILE_ID NUMERIC(20, 0)
)
ON COMMIT DELETE ROWS;
CREATE INDEX TEMP_T_F_B_ARCHIVE_FILE_ID_I ON TEMP_TAPE_FILE_BATCH(ARCHIVE_FILE_ID);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment