process-mining
2023.10
false
- Release notes
- Before you begin
- Getting started
- Integrations
- Working with process apps
- Working with dashboards and charts
- Working with process graphs
- Working with Discover process models and Import BPMN models
- Showing or hiding the menu
- Context information
- Export
- Filters
- Sending automation ideas to UiPath® Automation Hub
- Tags
- Due dates
- Compare
- Conformance checking
- Root cause analysis
- Simulating automation potential
- Triggering an automation from a process app
- Viewing Process data
- Creating apps
- Loading data
- Customizing process apps
- App templates
- Additional resources
- Out-of-the-box Tags and Due dates
- Editing data transformations in a local environment
- Setting up a local test environment
- Designing an event log
- Extending the SAP Ariba extraction tool
- Performance characteristics
How to cancel a data run from the database

Process Mining
Last updated Jun 11, 2025
How to cancel a data run from the database
This section describes how to manually stop the data run from the database in case of a failing data run.
Follow these steps.
-
Retrieve the App ID of the process app for which you want to cancel the data run. Check outProcess App properties.
-
Contact you database administrator to run the following SQL query in the AutomationSuite_ProcessMining_Metadata database:
with Ingestion_tbl as (select top 1 * from dbo.Ingestions where AppId = '<app ID>' and [Status] = 1 order by LastUpdated desc) update Ingestion_tbl set [Status]=3
where <app ID> should be replaced with the App ID retrieved in Step 1.The following illustration shows an example. -
Refresh Process Mining Portal page.
-
Upload data for the process app.