Delete records thru import

Hello

I want a function when import csv records and have able to delete records thru import. I have a large database with items +150k and sometimes i have to delete records. From data page i can only do 50 at a time, and from listview i cant load more then 1000 items on list, or else the page get stuck.

Or maby have a option i data page to empty the database with records.

1 Like

Hi @Phoenix, You can create a script to process a CSV file that contains the records you want to delete and automate the deletion process in your database… Alternatively, you could add a feature to your data management page to empty the database entirely with a single action:.
Thanks

Okey, do you know how i do the csv file for deletion of records?

One suggestion would be to add a checkbox field named “Ready for Delete”

And then add a workflow, that will watch changes to that field, and delete the records if it’s checked.

Then you would do an import that would update that field to TRUE on all of the rows you want to delete

Hmm, thats sounds very good, i will try it now, thx!