Search Results cz_db_logs




Overview

The CZ_DB_LOGS table is a core logging and reporting table within the Oracle Configurator (CZ) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. As a repository for operational and diagnostic data, it plays a critical role in monitoring and troubleshooting the configuration processes managed by the Oracle Configurator. This table captures detailed log entries generated during various data import, export, and synchronization activities, providing administrators and developers with a historical record for auditing performance, identifying errors, and validating the execution of configuration-related jobs.

Key Information Stored

While the provided ETRM metadata does not list specific columns, the documented foreign key relationship reveals essential structural and functional information. The primary column identified is RUN_ID, which is a foreign key to the CZ_XFR_RUN_INFOS table. This indicates that each log entry in CZ_DB_LOGS is associated with a specific execution run or session tracked in CZ_XFR_RUN_INFOS. Typically, such a logging table would also contain columns for log severity levels (e.g., ERROR, WARNING, INFO), timestamps, message codes, descriptive text detailing the event or error, and potentially module or component identifiers to pinpoint the source of the log entry within the Configurator's architecture.

Common Use Cases and Queries

The primary use case for CZ_DB_LOGS is post-execution analysis of Configurator batch processes, such as model imports or data transformations. Support personnel query this table to diagnose failed jobs by filtering on ERROR severity levels and joining to CZ_XFR_RUN_INFOS for contextual run details. A common reporting pattern involves aggregating log entries by run to assess overall process health. Sample SQL patterns include retrieving all errors for a specific run or generating a chronological audit trail of a particular session.

  • Identifying errors for a recent import run: SELECT * FROM cz.cz_db_logs l, cz.cz_xfr_run_infos r WHERE l.run_id = r.run_id AND r.run_name = 'MODEL_IMPORT_123' AND l.severity = 'ERROR' ORDER BY l.creation_date;
  • Summarizing log counts by severity for analysis: SELECT severity, COUNT(*) FROM cz.cz_db_logs WHERE run_id = :run_id GROUP BY severity;

Related Objects

The most directly related object, as explicitly defined by a foreign key constraint, is the CZ_XFR_RUN_INFOS table. This parent table stores high-level information about data transfer runs, and CZ_DB_LOGS provides the granular, line-item log details for each of those runs. This relationship is fundamental for tracing detailed execution logs back to a specific job instance. The table is intrinsically linked to the broader Oracle Configurator schema (CZ), and its data is likely populated by internal Configurator engine APIs and processes during configuration and model management operations.