Hi,
I'm in the process of re-ordering my statues by means of using the up and down arrows against the status in the Issue Attributes | Statuses Screen - Really Atlassian, is this the only way you could have implemented this functionality! It's truly awful and something to be ashamed of . Frequently the clicks have no impact on the position of the statues. The screen refreshes but the status I'm trying to move is just stuck. Clicking others around it and they don't move either.
This is just making a horrendous process even worse.
Has anyone else come across this and is there a work-around?
Cheers,
Jon C
Hi Eric,
You will need to upgrade the jdbc driver, the Microsoft JDBC Drivers 4.2 for SQL Server should resolve your problem.
Best regards,
Alex
I spent hours researching this. The clue was in @Alexandru Geageac comment to upgrade to MS JDBC drivers. Since JIRA 7 uses Tomcat 8 I kept failing because the wrong jar was being loaded. so for Tomcat 8 JIRA 7 download and copy Microsoft's "sqljdbc4.jar" file into the JIRA \lib directory.
Then change your JIRA conf\context.xml connection as follows, substituting for your own CONNECTION_NAME, USERNAME, PASSWORD, SERVER, PORT, and DATABASE_NAME. Be sure to use the semi-colons in the url string:
<Resource name="CONNECTION_NAME"
auth="Container"
type="javax.sql.DataSource"
username="USERNAME"
password="PASSWORD"
driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://SERVER:PORT;DatabaseName=DATABASE_NAME"/>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did this require a restart for the changes to take place?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yup, you should restart the JIRA instance...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dan thank you for pointing to the right direction, I had to use sqljdbc42.jar instead for JIRA 7.1.7
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you tell me where you found this file? Every time I try to download it from MSFT, I get directed the 4 version instead.
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.
Fantastic resolution Dan.
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.