Viewing 15 posts - 196 through 210 (of 267 total)
Thanks for the responses Gus and Alan
I was hoping to be able to do this without editing XML but that seems to be the only way
I've use the dataset approach...
June 1, 2016 at 1:37 am
Thanks, makes sense
I now have the following:
create procedure ReturnFirstOfMonthList @dateToUse date, @startDateToUse date,
@endDateToUse date
as
set nocount on;
select distinct FIRST_OF_MONTH
from DW_Presentation.dbo.D_CALENDAR
where CALENDAR_DATE >= @startDateToUse
and CALENDAR_DATE < @endDateToUse
option (recompile)
go;
declare @dateToUse date
declare @startDateToUse date
declare...
May 20, 2016 at 6:23 am
Thanks for the responses
I am going to look at both single dataset and subreports
I suspect for this particular report, a single dataset would work best as the data is derived...
May 18, 2016 at 9:07 am
Looks like I need to create a New System Role Assignment
http://searchsqlserver.techtarget.com/tip/Managing-permissions-in-SQL-Server-Reporting-Services
Problem is, if I go into Site Setting; Security; New Role Assignment, I do not have the ability to create...
May 13, 2016 at 4:08 am
Thanks
Via Site Settings, If you set the role up as System User, it looks to provide 'View system properties, shared schedules, and allow use of Report Builder or other clients...
May 13, 2016 at 2:14 am
Last night, I fixed this with the creation of this index:
CREATE NONCLUSTERED INDEX [IX_F_POLICY_PREMIUM_TRANSACTION_DATE_SKEY] ON [dbo].[F_POLICY_PREMIUM]
(
[TRANSACTION_DATE_SKEY] ASC
)
INCLUDE ( [COVER_START_DATE_SKEY],
[POLICY_SKEY],
[POLICY_POSTING_SKEY],
[BUSINESS_AREA_SKEY],
[PRODUCT_SKEY],
[COVER_EXPIRY_DATE_SKEY],
[LAPSED_DATE_SKEY]) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING...
May 11, 2016 at 2:18 am
Hi
Yes, it's a star schema
I've attached actual plan along with code for the indexes (there's quite a few)
Thanks
Damian.
May 7, 2016 at 1:25 pm
Hi
I've attached a before and after plan
Before uses:
select count(*)
FROM F_POLICY_PREMIUM POLICY_DATA
INNER JOIN D_PRODUCT
ON POLICY_DATA.PRODUCT_SKEY...
May 7, 2016 at 9:35 am
great, thanks
I have the basics working now
Now going to try and adapt this
...Adapted version working, problem solved!
Thanks
March 30, 2016 at 8:54 am
Thanks
Bit of a shame as I it squashes everything up for the first few days of a month
I've got around different presentation formats by using rendering (hidden based upon export...
March 17, 2016 at 8:55 am
Problem with the wizard is that it looks for a value (compulsory)
Once you drop that in it groups every column!
I now think this simply isn't possible
Seems like such basic functionality...
March 9, 2016 at 3:59 am
Hmm...
So this morning (UK) I come in and see that the job worked!
Also, I can now perform manual backup steps to the network drive with no issues
All things considered, I...
March 2, 2016 at 2:48 am
ok, so I've tried the following and this still does not work
Created a maintenance plan that performs a backup to the network folder
Created me as a proxy user
So, added me...
March 1, 2016 at 7:16 am
I just can't see what has changed here
Now concerned that the same will happen if I have to restart the report server
If it's running as the service account on both...
March 1, 2016 at 4:40 am
Viewing 15 posts - 196 through 210 (of 267 total)