Increase part information character length from 4000 to 60000
GENERAL
TESTING
GENERAL
TESTING
Description
Attachments
1
- 15 Jul 2011, 08:37 AM
Activity
Show:
Ying Wang July 15, 2011 at 8:37 AM
attached the patch.
Here is the sql script when we ran on our instance (oracle):
alter table SAM_SECTION_T add (TEMP_CLOB_TEXT clob);
update SAM_SECTION_T SET TEMP_CLOB_TEXT = DESCRIPTION;
alter table SAM_SECTION_T drop column DESCRIPTION ;
alter table SAM_SECTION_T rename column TEMP_CLOB_TEXT to DESCRIPTION;
Details
Details
Priority
Components
Assignee
SAMIGO TEAM
SAMIGO TEAMReporter
Ying Wang
Ying WangLabels
Created July 15, 2011 at 8:23 AM
Updated April 17, 2018 at 8:08 AM
Some users from our university created very long description in part information textarea and asked to increase part information character limit. We have increased the character length from 4000 to 60000.
I will attach a patch shortly in case someone needs it.