db2ACS_CreateObjectInfo Db2 Advanced Copy Services (ACS) API data structure
db2ACS_CreateObjectInfo contains
information about the Db2 ACS backup object
creation.
/* ==========================================================================
* Object Creation Parameters.
* ========================================================================== */
typedef struct db2ACS_CreateObjectInfo
{
db2ACS_ObjectInfo object;
db2ACS_DB2ID db2ID;
/* -----------------------------------------------------------------------
* The following fields are optional information for the database manager
* to use as it sees fit.
* ----------------------------------------------------------------------- */
/* Historically both the size estimate and management
* class parameters have been used by the TSM client API for traditional
* backup objects, log archives, and load copies, but not for snapshot
* backups.
* ----------------------------------------------------------------------- */
db2Uint64 sizeEstimate;
char mgmtClass[DB2ACS_MAX_MGMTCLASS_SZ + 1];
/* The appOptions is a copy of the iOptions field of flags passed to Db2's
* db2Backup() API when this execution was initiated. This field will
* only contain valid data when creating a backup or snapshot object.
* ----------------------------------------------------------------------- */
db2Uint32 appOptions;
} db2ACS_CreateObjectInfo;
- object
- Data type:
db2ACS_ObjectInfodb2ACS_ObjectInfocontains information about object created using the Db2 Advanced Copy Services (ACS) API. - db2ID
- Data type:
db2ACS_DB2IDdb2ACS_DB2IDidentifies the IBM® Data Server. - sizeEstimate
- Data type:
db2Uint64.An estimate of the size of backup objects being created. This estimate does not apply to log archives, load copies, or snapshot backups objects.
- mgmtClass
- Data type:
db2ACS_MgmtClass.A character string of length
db2ACS_MAX_MGMTCLASS_SZ + 1.This does not apply to snapshot backup objects.
- appOptions
- Data type:
db2Uint32.A copy of the backup options passed to the backup command that initiated the snapshot backup.