Last active
August 29, 2015 14:04
-
-
Save garth/eb8a04cea1c741a1c250 to your computer and use it in GitHub Desktop.
JIRA issue resolution fixes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- be sure to find out what the actual issues status number is for your workflow | |
update [jira].[dbo].[jiraissue] | |
set RESOLUTION = 10000, RESOLUTIONDATE = GETDATE() | |
where issuestatus = 10002 and resolution is null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- be sure to find out what the actual issues status number is for your workflow | |
update [jira].[dbo].[jiraissue] | |
set RESOLUTION = 2, RESOLUTIONDATE = GETDATE() | |
where issuestatus = 10008 and resolution is null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment