Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Yes, I've run Profiler and I can see statements and SP's being executed for storing the submission but no delete statement or any delete SP executed.
If I delete from the 'Form submissions' page in Epi I can see the delete SP being executed in the Profiler:
exec [dbo].[BigTableDeleteItem] @StoreId=2008
Hi!
I'm having issues deleting form submissions from the DDS. Submissions are stored in the tblBigTable with a store name of 'FormData_guid'. I use the statement below for deleting submission data from the DDS.
SubmissionInfo is populated from
SubmitActionResult.Data
and formIdentity is created withnew FormIdentity(formInfo.FormGuid, submissionInfo.FormLanguage)
. They seem to point to the right data, but apparently I'm missing something because the submission data (records) remain in the table and theDeleteSubmissionData
doesn't throw any errors.Any ideas would be greatly appreciated :)