Skip to content

Instantly share code, notes, and snippets.

@garth
Last active August 29, 2015 14:04
Show Gist options
  • Save garth/eb8a04cea1c741a1c250 to your computer and use it in GitHub Desktop.
Save garth/eb8a04cea1c741a1c250 to your computer and use it in GitHub Desktop.
JIRA issue resolution fixes
-- 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
-- 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