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

Replaced primary key constraint TEMP_TAPE_FILE_BATCH_PK with a simple index (non-unqiue)

parent 591b7327
No related branches found
No related tags found
No related merge requests found
......@@ -11,3 +11,4 @@ CREATE GLOBAL TEMPORARY TABLE TEMP_TAPE_FILE_BATCH(
CONSTRAINT TEMP_TAPE_FILE_BATCH_PK PRIMARY KEY(ARCHIVE_FILE_ID)
)
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