Viewing 15 posts - 7,336 through 7,350 (of 18,926 total)
No point in admitting defeat.
I changed your where clause with mine and it gives the correct output for the sample data, tho I'm not sure it will for your actual...
January 14, 2011 at 9:53 am
Please post the ddl and data so I can have a better look...
Instructions here :
http://www.sqlservercentral.com/articles/Best+Practices/61537/
January 14, 2011 at 8:45 am
Check out the backup history or sql logs to see if there's really nothing and noone rebacking up the db. Nothing else would make sense to me atm.
January 14, 2011 at 8:34 am
Have you tried this? :
and w.date >= s.startdate and w.date < s.enddate
January 14, 2011 at 8:12 am
bleister88 (1/14/2011)
you filter on DateAndTime... just filtering your remote table on that will return...
January 14, 2011 at 7:14 am
RBarryYoung (11/4/2008)
Sadly, no.
Do you know if there are plans to change that in 2008+?
I have the same problem on a 2k5 reporting project with the function "only" being used in...
January 13, 2011 at 8:35 am
Jason Thomas (10/26/2007)
u can have default values for all reports by setting their default values in the parameter...
January 13, 2011 at 8:33 am
I have to run to a meeting, but I think this can give you some pointers in the mean time...
http://www.velocityreviews.com/forums/t509239-error-subreport-could-not-be-shown.html
January 12, 2011 at 7:52 am
rkaria (1/12/2011)
sorry forgot to include the error message again 🙂" error subreport can not be displayed"
Wow, looks like an MS Access message got left over in SSRS... I wish...
January 12, 2011 at 7:39 am
What's the error message (sorry but I can't help without that)?
It should be posted in the output list when you run the report... and ususally google helps me figure...
January 12, 2011 at 7:32 am
A trace would be your best bet. I'd assume some sort of cursor client side with 1+ updates per row.
Unless you doubled the amount of transactions or activated an...
January 11, 2011 at 9:04 am
How to get the # of months from the temp results :
SELECT GroupCol, COUNT(*) FROM (
SELECT Distinct groupCol, MONTH(DateCol) FROM #tmp
) dta
January 11, 2011 at 8:48 am
I'd do all those calcs in sql server.
Save the base data in temp table.
Then for each group figure out how many months have data.
And do the final cals...
January 11, 2011 at 8:45 am
No it cannot be transfered. It can be created before the dynamic and used it it tho.
are you doing a defrag script?
If so you can just use this one......
January 11, 2011 at 5:30 am
Craig Farrell (1/10/2011)
Yikes. Wow. :w00t:
Now, THAT'S a Table Spool. Just the estimate, I know, but...
January 10, 2011 at 11:29 am
Viewing 15 posts - 7,336 through 7,350 (of 18,926 total)