Hi,
I am importing the CSV file to Database properly but when i import the same CSV file with updated value, it doesn't override the existing records.
I want to override the existing records while Importing the CSV file.
Kindly help me out with this.
Discussion posts and replies are publicly visible
you can truncate the table first and then insert the data to DB. for truncate you can use query database smart service. if you dont want to truncate the entire table then first you have to get the records which you have to delete via queryEntity and then use deletefromDatastoreEntity and then insert the data into DB.