Viewing 15 posts - 2,806 through 2,820 (of 3,480 total)
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
Without table definitions and maybe some sample data, it's hard to tell, but I would guess that if you created a Calendar table and outer joined that to the source...
October 9, 2014 at 12:23 pm
If you did a cross join between your dates table and your Properties table, it would return all possible combinations of (Property, Date) and that would solve your problem.
...
October 9, 2014 at 11:31 am
Viewing 15 posts - 2,806 through 2,820 (of 3,480 total)