CZ_ARCHIVES

Contains Configurator Extension archives and references to archive URLs.

Details

  • Schema: FUSION

  • Object owner: CZ

  • Object type: TABLE

  • Tablespace: Default

Primary Key

Name Columns

CZ_ARCHIVES_PK

ARCHIVE_ID

Columns

Name Datatype Length Precision Not-null Comments
ARCHIVE_ID NUMBER 18 Yes Unique identifier of the Configurator Extension Archive.
NAME VARCHAR2 255 Yes Holds the archive name.
DESCRIPTION VARCHAR2 1000 Description of the code archive.
ARCHIVE_TYPE VARCHAR2 30 Yes Type of the archive. Determines the source of the archive: 0 = BLOB - jar/zip file in BLOB. 1 = URL - jar/zip file from URL.
ARCHIVE_BLOB BLOB If archive_type = BLOB, this is the content of the archive.
ARCHIVE_URL CLOB If archive_type = URL, this is the URL specifying the archive file. If archive_type = BLOB, this is the name of the file that has been uploaded.
DOCUMENTATION_URL CLOB URL of documentation for the archive (i.e. javadoc).
DELETED_FLAG NUMBER 18 Yes This flag indicates the logical deletion of the row. The Non-Zero value represents deleted state and 0 represents not-deleted state. A user controlled background purge process will physically delete the orphaned rows with the Non-Zero flag value.
CREATION_DATE TIMESTAMP Yes Who column: indicates the date and time of the creation of the row.
CREATED_BY VARCHAR2 64 Yes Who column: indicates the user who created the row.
LAST_UPDATE_DATE TIMESTAMP Yes Who column: indicates the date and time of the last update of the row.
LAST_UPDATED_BY VARCHAR2 64 Yes Who column: indicates the user who last updated the row.
OBJECT_VERSION_NUMBER NUMBER 9 Yes Used to implement optimistic locking. This number is incremented every time that the row is updated. The number is compared at the start and end of a transaction to detect whether another session has updated the row since it was queried.
LAST_UPDATE_LOGIN VARCHAR2 32 Who column: indicates the session login associated to the user who last updated the row.

Indexes

Index Uniqueness Tablespace Columns
CZ_ARCHIVES_U1 Unique Default ARCHIVE_ID