Skip to content

Instantly share code, notes, and snippets.

@mmasashi
Created December 2, 2014 23:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmasashi/0017985c1d54ae06d610 to your computer and use it in GitHub Desktop.
Save mmasashi/0017985c1d54ae06d610 to your computer and use it in GitHub Desktop.
Number of commits per day (Amazon Redshift)
select trunc(startwork), count(distinct xid) from stl_commit_stats where xid > 0 group by trunc(startwork) order by 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment