Hi,
I follow this documentation:
https://confluence.atlassian.com/display/JIRAKB/Changing+Server+ID+for+Test+Installations
I put this query on my database in JIRA, with ID that I want:
UPDATE propertystring SET propertyvalue =
'<ID>'
where id = (select id from propertystring where id in (select id from propertyentry where PROPERTY_KEY=
'jira.sid.key'
));
ERROR 1093 (HY000): You can't specify target table 'propertystring' for update in FROM clause
Finally, this was the sentence SQL that I used to change my Server ID on JIRA:
UPDATE propertystring SET propertyvalue = 'XXXX-XXXX-XXXX-XXXX' where id= XXXX
You have to search which ID you have to change with query:
select * from propertystring where id in (select id from propertyentry where PROPERTY_KEY='jira.sid.key');
MySQL does not allow modifying tables, that are mentioned in subqueries of the UPDATE. So rephrase your update to avoid subqueries. Something like (untested):
UPDATE propertystring, propertyentry SET propertyvalue = 'XXXX-XXXX-XXXX-XXXX' WHERE propertstring.id=propertyentry.id AND
propertyentry.PROPERTY_KEY=
'jira.sid.key'
Test the query with SELECT instead of UPDATE. Yes, you can list multiple tables in UPDATE even if you are only modifying some of them...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Your SQL query must be wrong and may need the extra schemas/domain included with the table name. Fix it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I test:
select * from propertystring where id in (select id from propertyentry where PROPERTY_KEY='jira.sid.key');
And works, return:
ID | property value
10006 | XXXX-XXXX-XXXX-XXXX
I test this:
UPDATE propertystring SET propertyvalue = 'XXXX-XXXX-XXXX-XXXX' where id in (select id from propertystring where id in (select id from propertyentry where PROPERTY_KEY='jira.sid.key'));
And not works... I get the same error... why??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Why to put in addition "select id from propertystring where id..."
Is it not simpliest as below ?
UPDATE propertystring SET propertyvalue = 'XXXX-XXXX-XXXX-XXXX'
where id in (
select id from propertyentry
where PROPERTY_KEY='jira.sid.key'
);
Best regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
UPDATE propertystring SET propertyvalue = 'XXXX-XXXX-XXXX-XXXX' where id in (select id from propertystring where id in (select id from propertyentry where PROPERTY_KEY='jira.sid.key'));
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Don't work for me. I still get the same error...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!Online 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.