Viewing 15 posts - 2,806 through 2,820 (of 3,482 total)
Again, the original query produces a list of "programs" that a "player" and or "member" from a particular family are eligible to register for. The result set needs to exclude...
October 25, 2014 at 10:45 pm
I would probably do it by using a Calendar table. There are a bunch of articles around here this one: http://sqlserver2000.databases.aspfaq.com/why-should-i-consider-using-an-auxiliary-calendar-table.html
You might have to add the column for Nth...
October 21, 2014 at 5:16 pm
I would run the inserts one at a time and see if they throw errors. Either that or put in some dummy print statements to see which insert/select statement...
October 21, 2014 at 2:12 pm
Here is the report... Hopefully my table/field names match yours. If not, I can share the table scripts too.
Just realized... I'm using 2012, so I may have to redo...
October 17, 2014 at 11:41 am
I think I sorted it out. The problem is that it requires a Calendar table/ table valued function in order to work (because you have to have all the...
October 16, 2014 at 10:46 pm
One way is to just add a Page Header to your report and put the textbox in it.
October 16, 2014 at 3:42 pm
So using T-SQL isn't an option, because you're using SSRS?
If you can use T-SQL, something like this should work:
SELECT HeatNo, MAX(Frame) AS MaxFrame, MAX(Window) AS MaxWindow
FROM (
SELECT 1 AS...
October 16, 2014 at 2:59 pm
dates are numbers, so change the formatting in the textbox properties.
October 16, 2014 at 2:18 pm
Thanks. That's what I thought, but wanted to make sure I wasn't missing something.
October 15, 2014 at 9:28 am
If you're brand new to SSRS, Brian Larson's book is pretty good. Wordy, but he walks you through pretty much every step. His book covers 2008 (not R2, which...
October 14, 2014 at 9:30 pm
Check out this article [/url].
It shows one of the reasons to have a Calendar table. It makes a job like the one you are attempting really easy.
The problem you...
October 14, 2014 at 1:21 pm
Any chance you can post the create table scripts for the 3 tables? (Are these part of an external system? the table and field names are mind boggling!)
October 14, 2014 at 10:35 am
I guess you don't have to build stored procedures, but it makes things a lot easier.
Any chance you could post some dummy data, so we can see what...
October 13, 2014 at 10:15 am
The query you posted had me confused. Once I took a step backward and slapped up a totally fake dataset, this was a snap. I created a bar...
October 10, 2014 at 10:51 pm
Yes, I admit a CROSS JOIN would kill performance, but I would definitely filter first and then create the smallest cross join possible.
Glad you got it sorted.
October 9, 2014 at 7:16 pm
Viewing 15 posts - 2,806 through 2,820 (of 3,482 total)