Today in the pre-trial completion times the following error is caused because the SQL Server data field is lowercase and the Oracle database is capitalized.
How to solve this problem, very simple. The SQL is posted here.
1. Identify the production model with lowercase letters-only filter the rigid board, not included in the FPC
--identify the production model with lowercase letters-only the rigid board, the FPC is not includedSELECT * fromMktxhglbWHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenSELECT * fromMktdeliveryWHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenSELECT * fromMkthtpsbWHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenSELECT * fromPpeecnxhbWHERENewpdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Newpdctno)= TenSELECT * fromPpeecnxhbWHEREOldpdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Oldpdctno)= Ten
2. Batch update the production model with lowercase letters to uppercase-filter only rigid board, FPC not included
--batch update of the production model with lowercase letters to uppercase-filter only rigid board, FPC not includedUpdateMktxhglbSETPdctno= UPPER(Pdctno)WHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenUpdateMktdeliverySETPdctno= UPPER(Pdctno)WHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenUpdateMkthtpsbSETPdctno= UPPER(Pdctno)WHEREPdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Pdctno)= TenUpdatePpeecnxhbSETNewpdctno= UPPER(Newpdctno)WHERENewpdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Newpdctno)= TenUpdatePpeecnxhbSETOldpdctno= UPPER(Oldpdctno)WHEREOldpdctno like '%[a-z]%'COLLATE Chinese_prc_bin and LEN(Oldpdctno)= Ten
PCB MS SQL SERVER field with lowercase letters updated to uppercase