reporting

How to generate stats for a GitHub project?

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-26 19:23:56
问题 Is there an easy/efficient way to generate some high-level reports for a particular GitHub project? e.g. lines of code committed over time, top contributors, etc 回答1: You can try applying gitstats to a cloned repo of your GitHub repo. See for example the activity of the Git repo itself, with many data like the commits per year/month: See also "Looking at Git Statistics", with the GitHub 'yearly_stats' for a simple little script. Update April 2013 ("Get up to speed with Pulse"): Check out

The permissions granted to user ' are insufficient for performing this operation. (rsAccessDenied)"}

不想你离开。 提交于 2019-11-26 18:54:57
问题 I created a report model using SSRS (2005) and published to the local server. But when I tried to run the report for the model I published using report builder I get the following error. Report execution error:The permissions granted to user are insufficient for performing this operation. (rsAccessDenied) 回答1: It's because of lack of privilege for the user you are running the report builder, just give that user or a group a privilege to run report builder. Please visit this article Or for

Passing parameter via url to sql server reporting service

二次信任 提交于 2019-11-26 14:35:20
I'm trying to pass a parameter via the url to SSRS and it appears not to work! I'm trying to pass a userId (string) via the url which will be passed to the database and used by the query. base url: http://blah/Reports/Pages/Report.aspx?ItemPath=MyReport tried this but it doesn't work: http://blah/Reports/Pages/Report.aspx?ItemPath=MyReport&UserId=fred Any ideas Mozy As well as what Shiraz said, try something like this: http://<server>/ReportServer/Pages/ReportViewer.aspx?%2f<path>%2f<ReportName>&rs:Command=Render&UserID='fred' Note the path would only work if you are in a single folder. When I

In a Maven multi-module project, how can I disable a plugin in one child?

不打扰是莪最后的温柔 提交于 2019-11-26 13:09:41
问题 I have a maven multi-module project (boy, I\'ve written that opening way too many times on this site). Almost all the modules (that is, the ones that have code in them) should run the maven-site-plugin to generate reports about code coverage, etc. These have a detailed shared configuration -- which reports to run, which files to cover/exclude for certain plugins, etc. However, there are a few modules that deal with packaging -- running the assembly plugin to generate a tarball, etc. These

What&#39;s the best approach to printing/reporting from WPF? [closed]

霸气de小男生 提交于 2019-11-26 08:45:45
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I have an upcoming project which will have to be able to print simple reports from its data. It\'ll be WPF-based, and I\'m wondering

Passing parameter via url to sql server reporting service

ⅰ亾dé卋堺 提交于 2019-11-26 05:56:17
问题 I\'m trying to pass a parameter via the url to SSRS and it appears not to work! I\'m trying to pass a userId (string) via the url which will be passed to the database and used by the query. base url: http://blah/Reports/Pages/Report.aspx?ItemPath=MyReport tried this but it doesn\'t work: http://blah/Reports/Pages/Report.aspx?ItemPath=MyReport&UserId=fred Any ideas 回答1: As well as what Shiraz said, try something like this: http://<server>/ReportServer/Pages/ReportViewer.aspx?%2f<path>%2f