Hi,
I am trying to delete all the existing rows from the data entity using delete from data store entity smart service. Can anyone please suggest me what to include in identifiers if we want to delete everything without specifying all the identifiers?
Thanks
Yeswanth.
Discussion posts and replies are publicly visible
Today what is the best procedure to delate all rows from the data store entity?
The simplest would be to write a dedicated Stored Procedure that issues a TRUNCATE against the target table and call that using the OOTB a!executeStoredProcedureOnSave() function. You'd have to apply the appropriate safeguards around this to ensure this wasn't executed unintentionally.
thanks Stewart I solved using smart service QUERY DATABASE and inside the query I used TRUNCATE TABLE + TableName