Viewing 15 posts - 166 through 180 (of 452 total)
Donny Z (8/19/2013)
Jeff Moden (10/16/2011)
The way I solved this problem for my group was to simply use QUOTENAME(columnname, '"') and make sure that I used '"' as the text qualifier.
Can...
August 20, 2013 at 6:53 am
//Ravi (3/23/2012)
users want to display number of hits on the...
August 20, 2013 at 6:41 am
MaggieW (8/19/2013)
Do you think the first line should be changed to:set @start = coalesce(@startdate, dateadd(yy,-1,@enddate), dateadd(yy,-1,getdate())
Maggie, I'm not sure whether you want your start date to be today or one...
August 20, 2013 at 6:36 am
Thanks to Koen, Pete and Gazareth -- it turns out that it was parameter sniffing causing the problem.
SSRS report...
August 19, 2013 at 2:30 pm
jbalbo (8/13/2013)
it can't becuase it has a shared datasource
What does a shared data source have to do with this? This shouldn't limit you from putting the reports in separate...
August 19, 2013 at 1:19 pm
ChrisM@Work (8/19/2013)
The OP forgot to assign the redefined startdate and enddate to @start and @end. You picked up on that - I'm guessing OP is having coffee 😉
Ahhh-- I see.
Thanks,
Rob
August 19, 2013 at 8:56 am
ChrisM@Work (8/19/2013)
robert.gerald.taylor (8/19/2013)
SET @start = COALESCE(@startdate, DATEADD(yy, -1, @endDate), GETDATE());
SET @end = COALESCE(@enddate, DATEADD(yy, 1, @startdate), DATEADD(yy, 1, GETDATE()));
Seems...
August 19, 2013 at 8:28 am
Can't you just right click on the tablix and add the row; and then right click on the row and say add column (to left or right)?
I must be missing...
August 19, 2013 at 7:15 am
You're doing a lot in you If/else, couldn't you do something like:
SET @start = COALESCE(@startdate, DATEADD(yy, -1, @endDate), GETDATE());
SET @end = COALESCE(@enddate, DATEADD(yy, 1, @startdate), DATEADD(yy, 1, GETDATE()));
Seems cleaner this...
August 19, 2013 at 7:11 am
Can you login as that agent account and then try running the package in BIDs? It may shed some light on what permissions issue it is running up against.
HTH,
Rob
August 19, 2013 at 6:40 am
I think you're on the right track. See if the flat file exists; if so, load flat file to a staging table. Verify that what's in the staging...
August 16, 2013 at 7:15 am
Gazareth (8/14/2013)
Could be a difference in SET options between SSMS & SSRS? (I'm thinking ARITHABORT)
In my SSMS, I have the SET ARITHABORT checked to on in Tools,Options. I'm not...
August 16, 2013 at 6:27 am
Pete,
Thanks for your feedback.
peterzeke (8/14/2013)
August 16, 2013 at 6:04 am
jbalbo (8/13/2013)
I have my main...
August 13, 2013 at 12:50 pm
We ended up changing the SharePoint "Manage Processing Options" setting to allow the report to run an unlimited time. This didn't speed anything up, but it did stop the...
August 13, 2013 at 9:45 am
Viewing 15 posts - 166 through 180 (of 452 total)