...
Expand |
---|
title | Click here to view solution |
---|
|
The error is displayed when the DE form ‘PATHOLOGY’ for the event ‘BASELINE’ is not yet created hence the data cannot be imported. You need to make sure that the form error is fixed and imported. |
How to cleanup mapping tables?
You can clean up the Open Clinica mapping tables using the below SQLs
Code Block |
---|
|
Find the study ID from the table 'os_oc_studies'
//SQL to cleanup the visits mapping table
SQL>delete from os_oc_visits where subject_id in (select identifier from os_oc_subjects where study_id = N);
//SQL to cleanup the participant mapping table
delete from os_oc_subjects where study_id = N;
commit; |