The CREATE_COVERAGE_TABLES procedure creates the DBMSPCC_RUNS, DBMSPCC_UNITS, and DBMSPCC_BLOCKS tables for storing coverage information.
Note
This subprogram is supported starting from V4.4.1.
Syntax
DBMS_PLSQL_CODE_COVERAGE.CREATE_COVERAGE_TABLES (
FORCE_IT IN BOOLEAN DEFAULT FALSE);
Parameters
| Parameter | Description |
|---|---|
| FORCE_IT | If the coverage tables already exist, an error is thrown by default. If set to TRUE, the existing table is silently deleted and a new table is created. |
Examples
Create the coverage information tables:
BEGIN
DBMS_PLSQL_CODE_COVERAGE.create_coverage_tables(true);
END;
/