Hi
when i want to restore a xml backup-file in jira that use mysql ,i get an error about string size limitiotin for some custom fields , what's the problam and what does can i do ?
i can use this backup file when i using hsql , but i cant restore it when i using mysql
thanks a lot
Hi Mehran,
Can you include the error message here so we can have a look?
Its possible you'll have to extend the column length on the database table for the restore to complete successfully.
That does look like the column length needs to be extended.
Stringvalue in that table is restricted to 255 characters, so bumping that up to 512 will hopefullly suffice :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks Pelle,
how can i change it ? in wich table?
is there any way to convert all stringvalue to nvarchar or bumping all of them to 512 ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The error looks like the table is 'customfieldvalue' and the column 'stringvalue' needs extending. For MySQL I believe the syntax would be something like:
ALTER TABLE customfieldvalue MODIFY stringvalue VARCHAR(512);
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Atlassian Government Cloud has achieved FedRAMP Authorization at the Moderate level! Join our webinar to learn how you can accelerate mission success and move work forward faster in cloud, all while ensuring your critical data is secure.
Register NowOnline forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.