You need connect UiPath with oracle first
Then convert data table in UiPath to database in oracle
- Add UiPath.Database.Activities to your UiPath solution through package manager.
- Add a Read Range to read your excel to a datatable
- Use the database connection activity and create the connection to the database
- Use a for each row activity to loop through the datatable
- Within the loop, use the execute query activity.
- Configure this activity to accept the datarow returned from the row variable of the for each row.
- Write the query to insert it into your table
You can try