FND_FILE_UPLOAD_CHUNKS
This table tracks the state of file chunks being uploaded for Attachments using a chunked background process, which is separate from the primary process used by the User Interface.
Details
-
Schema: ATTACHMENTS
-
Object owner: FND
-
Object type: TABLE
-
Tablespace: TRANSACTION_TABLES
Primary Key
Name | Columns |
---|---|
FND_FILE_UPLOAD_CHUNK_PK |
CHUNK_UPLOAD_ID |
Columns
Name | Datatype | Length | Precision | Not-null | Comments |
---|---|---|---|---|---|
CHUNK_UPLOAD_ID | NUMBER | 18 | Yes | Unique Identifier for a Chunked File Upload that is being tracked by this table. | |
TRACKER_ID | VARCHAR2 | 40 | Yes | Public Identifier used to synchronize the upload of the file and the attachment it is associated with. | |
CHUNK_INDEX | NUMBER | 18 | Yes | Public Identifier used to identify the chunk within the tracked upload. | |
CHUNK_SIZE | NUMBER | 18 | Yes | Size of the chunk, in bytes, from within the file that is being uploaded. | |
STATUS | VARCHAR2 | 10 | Yes | The state of the chunk being uploaded. | |
ERROR_MESSAGE | VARCHAR2 | 4000 | Describes the reason for the error to the end user. | ||
ERROR_ACTION | VARCHAR2 | 4000 | Describes the action the end user needs to take to resolve the error. | ||
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. | |
LAST_UPDATE_LOGIN | VARCHAR2 | 32 | Who column: indicates the session login associated to the user who last updated the row. | ||
CHUNK_METADATA | VARCHAR2 | 4000 | Additional custom information required as part of an upload for a specific repository |
Indexes
Index | Uniqueness | Tablespace | Columns |
---|---|---|---|
FND_FILE_UPLOAD_CHUNK_U1 | Unique | FUSION_TS_TX_DATA | CHUNK_UPLOAD_ID |
FND_FILE_UPLOAD_CHUNK_U2 | Unique | FUSION_TS_TX_DATA | TRACKER_ID, CHUNK_INDEX |