DBA Data[Home] [Help] [Dependency Information]


TABLE: APPLSYS.AD_APPLIED_PATCHES

Object Details
Object Name: AD_APPLIED_PATCHES
Object Type: TABLE
Owner: APPLSYS
FND Design Data: TableAD.AD_APPLIED_PATCHES
Subobject Name:
Status: VALID


AD_APPLIED_PATCHES holds information about the "distinct" Oracle Applications patches that have been applied. If 2 patches happen to have the same name but are different in content (eg. "merged" patches), then they are considered distinct and this table will therefore hold 2 records.
.
When populating PATCH_NAME, a name-transformation is done to help tie together the comprising drivers of a patch. The transformation essentially does the following:
- Removes any "D" or "DB" (or "d" or "db") appearing as a prefix or suffix in the original patch name
- Removes any "bug_" text appearing as a prefix in the original patch name
.


Storage Details
Tablespace: TablespaceAPPS_TS_TX_DATA
PCT Free: 10
PCT Used:
Indexes
Index Type Uniqueness Tablespace Column
AD_APPLIED_PATCHES_U1 NORMAL UNIQUE TablespaceAPPS_TS_TX_IDX ColumnAPPLIED_PATCH_ID
AD_APPLIED_PATCHES_N1 NORMAL NONUNIQUE TablespaceAPPS_TS_TX_IDX ColumnPATCH_NAME
AD_APPLIED_PATCHES_N2 NORMAL NONUNIQUE TablespaceAPPS_TS_TX_IDX ColumnMAINT_PACK_LEVEL
AD_APPLIED_PATCHES_N3 NORMAL NONUNIQUE TablespaceAPPS_TS_TX_IDX ColumnIMPORTED_ID
ColumnIMPORTED_FROM_DB
Columns
Name Datatype Length Mandatory Comments
APPLIED_PATCH_ID NUMBER
Yes Patch identifier
RAPID_INSTALLED_FLAG VARCHAR2 (1)
Y implies that this record was created at Oracle Corporation when building a Rapid Install database
PATCH_NAME VARCHAR2 (120) Yes Patch name as obtained after a simple transformation. See table description
PATCH_TYPE VARCHAR2 (30) Yes ONE-OFF, PATCH-SET or MAINTENANCE-PACK
MAINT_PACK_LEVEL VARCHAR2 (30)
Maintenance Pack Level. Left blank if the patch is not a Maintenance Pack
SOURCE_CODE VARCHAR2 (3) Yes Data source (DRV=>Patch driver, TXT=>applptch.txt)
CREATION_DATE DATE
Yes Standard who column - date when this row was created.
CREATED_BY NUMBER
Yes Standard who column - user who created this row (foreign key to FND_USER.USER_ID).
LAST_UPDATE_DATE DATE
Yes Standard Who column - date when a user last updated this row.
LAST_UPDATED_BY NUMBER
Yes Standard who column - user who last updated this row (foreign key to FND_USER.USER_ID).
IMPORTED_FLAG VARCHAR2 (1)
Y=>Imported from another database using patch-history export-import feature
IMPORTED_FROM_DB VARCHAR2 (30)
ORACLE_SID of the (source) database from which this row is imported
IMPORTED_ID NUMBER

APPLIED_PATCH_ID of the source row in the source database
MERGE_DATE DATE

Merger date, if its a merged patch
DATA_MODEL_DONE_FLAG VARCHAR2 (1)
Y=>Data model changes of this patch have been applied. Used for database/generate driver run coordination
Query Text

Cut, paste (and edit) the following text to query this object:


SELECT APPLIED_PATCH_ID
,      RAPID_INSTALLED_FLAG
,      PATCH_NAME
,      PATCH_TYPE
,      MAINT_PACK_LEVEL
,      SOURCE_CODE
,      CREATION_DATE
,      CREATED_BY
,      LAST_UPDATE_DATE
,      LAST_UPDATED_BY
,      IMPORTED_FLAG
,      IMPORTED_FROM_DB
,      IMPORTED_ID
,      MERGE_DATE
,      DATA_MODEL_DONE_FLAG
FROM APPLSYS.AD_APPLIED_PATCHES;

Dependencies

[top of page]

APPLSYS.AD_APPLIED_PATCHES does not reference any database object

APPLSYS.AD_APPLIED_PATCHES is referenced by following:

SchemaAPPLSYS
ViewAD_APPLIED_PATCHES#