...
Expand |
---|
When the OC field has any value that is not configured in the OS, this error occurs. E.g., In the ‘Clinical Diagnosis’ dropdown field has PV values like 10 weeks gestation, 13 weeks gestation, etc. These values are not available in OS for the mapped field, then the data for these subjects won’t sync. To resolve this, add the same values in the OS dropdown as OC. |
12. SQL error: 'com.mysql.cj.jdbc.exceptions.MysqlDataTruncation: Data truncation: Data too long for column 'OIDS_MAPPINGDE_A_(n)' at row 1. Please report this error to the system administrator. (COMMON_SQL_EXCEPTION)
...
When you try to add a huge number of fields in the OID mapping sheet, and the max data limit exceeds, this error occurs. The max data it can store is 64 KB.
Execute below DDL. This will ensure you can store up to 16 MB.
Code Block |
---|
alter table os_oc_studies change oids_mapping oids_mapping mediumtext; |
...
', where n is any number.
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
This error means the data that you are trying to insert/update cannot be stored in column DE_A_(n) because of its size limitation. Steps to resolve:
Syntax of the code: alter table <table_name> change <column_name where issue is found> mediumtext; Check the below example code for the reference:
|
13. 502 Bad Gateway Error. An error was encountered when invoking the OpenClinica API. The details are present in the error log file.
...