Skip to content

Instantly share code, notes, and snippets.

@massahud
Last active August 29, 2015 14:01
Show Gist options
  • Save massahud/b7fd98dfeb5bdf54c83f to your computer and use it in GitHub Desktop.
Save massahud/b7fd98dfeb5bdf54c83f to your computer and use it in GitHub Desktop.
Remove sonar duplicated last build
update sonar.snapshots old_snap set old_snap.islast=0
where islast=1
and exists (
select * from sonar.snapshots new_snap
where new_snap.created_at > old_snap.created_at
and new_snap.project_id = old_snap.project_id
and new_snap.islast=1
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment