Viewing 15 posts - 1,096 through 1,110 (of 1,957 total)
That depends on whether you just want to skip Sunday every time or whether you are saying you want to skip any day that has no data...
Case 1 : Skip...
November 22, 2012 at 8:33 am
GPO (11/14/2012)
row_number() over (order by @@spid)
I'm not against using obscure hacks, and there's always going to be a debate about the point at which you even classify something as...
November 14, 2012 at 4:51 pm
Show us the code you use in the expression that builds the hyperllink and also copy the generated hyperlink from the rendered report and show us that.
November 14, 2012 at 9:01 am
Michael Meierruth (11/14/2012)
This is what I was looking for.
select top 1000 identity(int,1,1) as N
into dbo.HTally
from master.sys.all_columns ac1
cross join master.sys.all_columns ac2
But you would then have to do...
November 14, 2012 at 7:13 am
="http://servername/ReportServer/Pages/ReportViewer.aspx?%2ftest+1%2ftestds%2fReport2&rs:Command=Render&ReportParameter1="
& UrlEncode(Parameters!ReportParameter1.Value)
November 14, 2012 at 6:56 am
A quick google search found this blog, which seems a reasonable way:
http://capstonebi.blogspot.co.uk/2010/04/url-encoding-in-reporting-services.html
November 14, 2012 at 6:30 am
Michael Meierruth (11/14/2012)
In fact, in place of '(select 1)' you can use anything that's not a constant, e.g. @@servername, getdate(), etc. (but for some strange reason it doesn't like @@datefirst)
Yes,...
November 14, 2012 at 6:26 am
Jeff Moden (11/12/2012)
Here are the run results using the same machine I used in testing...
November 13, 2012 at 12:43 am
Excellent article once again Jeff 🙂
Nicely written and excellent Resource zip.
I have made a revision and I would be interested if you could take a look at it and let...
November 12, 2012 at 6:43 pm
Jeff Moden (11/9/2012)
mister.magoo (11/9/2012)
Same with me and C# 😉...{snip}...
Now, that sounds very interesting, but wait, what's that I hear....it's the hoardes of CLR enthusiasts waiting to pounce on you 😛
You're...
November 9, 2012 at 10:07 am
Jeff Moden (11/9/2012)
mister.magoo (11/9/2012)
Ha!, you were just pretending not to know all along! 😀
As a bit of a side bar, I think I'm really bad at XML and, for some...
November 9, 2012 at 8:43 am
Ha!, you were just pretending not to know all along! 😀
November 9, 2012 at 7:40 am
Here is a version that would handle things for multiple RootA nodes and multiple Payees, assuming you just want a cross-join of payees with due dates for now....
--===== This shreds...
November 9, 2012 at 2:46 am
A couple of points to bear in mind about OPENXML:
1. Memory ( http://msdn.microsoft.com/en-us/library/ms187367(v=sql.90).aspx
A parsed document is stored in the internal cache of SQL Server 2005. The MSXML parser uses one-eighth...
November 9, 2012 at 2:19 am
Jeff Moden (11/9/2012)
That does, in fact, help. I realize that I didn't have it in my test data and so apologize for that but if you...
November 9, 2012 at 1:59 am
Viewing 15 posts - 1,096 through 1,110 (of 1,957 total)