/
Fixing query forms
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com
Fixing query forms
The old caTissue or OpenSpecimen v1.1 query forms are not compatible with v2x or later version query forms. As a result, when upgrading from v1.1 to later versions, following error occurs during application bootstrap: Error creating bean with name 'importQueryForms'
To fix this problem, follow below steps:
Delete old query form associations
delete from catissue_form_context where container_id in ( select identifier from dyextn_containers where name in ('CollectionProtocol', 'Participant', 'SpecimenCollectionGroup', 'Specimen', 'Order', 'Shipment') ) and entity_type = 'Query';
Delete incompatible query form definitions
delete from dyextn_containers where name in ('CollectionProtocol', 'Participant', 'SpecimenCollectionGroup', 'Specimen', 'Order', 'Shipment');
Delete all form import change logs. This step needs to be carried out iff
os_import_forms_log
table exists in the schema.delete from os_import_forms_log;
- Restart OpenSpecimen
, multiple selections available,
Related content
How to fix a slow loading Specimen query form?
How to fix a slow loading Specimen query form?
More like this
How to fix corrupted specimen event forms?
How to fix corrupted specimen event forms?
More like this
Fixing distributed event form
Fixing distributed event form
More like this
Fixing transfer events table
Fixing transfer events table
More like this
Change database and all tables character set
Change database and all tables character set
Read with this
How to fix missing collection and received event fields?
How to fix missing collection and received event fields?
More like this
Got feedback or spotted a mistake?
Leave a comment at the end of this page or email contact@krishagni.com