2. RTR-1438 Resolved the database EA table column length issue. The database schema of EA table for MSSQL server is designed as varbinary(4096), which limits the EA length from 0 to 4096. LSCS code doesn't truncate any EA before storing it into database. To solve the problem, user needs to manually update the database schema for the length of varbinary for EA table (Note, for MSSQL server, the definable maximum length is 8000) by using Microsoft SQL Server Management Studio or other similar tool. If you expect a longer length than 8000, update schema as varbinary(max).