Viewing 15 posts - 7,336 through 7,350 (of 18,923 total)
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
Are the stats up to date and the indexes defragged (or rebuilt)?
January 10, 2011 at 11:27 am
... and 1 more point.
All those spools are generating 59 GB of data... 172 times the total size of the DB.
January 10, 2011 at 11:21 am
A couple more points to ponder on :
StatementOptmLevel="FULL" StatementOptmEarlyAbortReason="TimeOut"
That means that the server has given up on finding a "decent" plan to execute that query. So breaking...
January 10, 2011 at 11:13 am
Viewing 15 posts - 7,336 through 7,350 (of 18,923 total)