Changing the max length for the label field on the sys_choice table through an update set to a value larger than 100Issue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Changing the max length on the dictionary records for the label field on sys_choice table to a value larger than 100 will work when making the change directly in an instance. However, when trying to move that change via update set the change will not reflect and even though the max length size will display the new value, the data stored in the label column from sys_choice table will be truncated to 100 characters. CauseThe sys_choice table is a core table and is blacklisted form making changes via update set. This is why the update set will not be successful when attempting to change the max_length.ResolutionIt is never a good idea to alter core system tables, but if it is strictly necessary, then the change can be done in each instance, directly through the UI, not via update sets.