...
Important Notes before cleansing the table:
Warning | ||
---|---|---|
| ||
|
Getting Started
The Process Data Collector information is stored in the app_report_* tables. Truncating these tables is sufficient to clean up the data associated with this plugin. To delete the Process Data Collector database tables in MySQL, use the following SQL script:
Data Cleansing Query for Process Data Collector Table:
Code Block | ||
---|---|---|
| ||
set foreign_key_checks=0; truncate app_report_activity_instance; truncate app_report_package; truncate app_report_app; truncate app_report_process_instance; truncate app_report_activity; truncate app_report_process; set foreign_key_checks=1; |
Related Links
...
...
...