Viewing 15 posts - 1 through 15 (of 81 total)
You're doing two different things in the two queries.
try creating it as a WITH SET instead of WITH MEMBER
January 25, 2016 at 8:18 am
Why dont you just set the flat file destination to output the header row?
January 25, 2016 at 6:07 am
TSQL Tryer (1/25/2016)
January 25, 2016 at 6:05 am
No worries π
Ok lets take a step back if I may? what are you trying to achieve with the chart?
If I was to take a guess, you're trying to...
December 8, 2015 at 9:10 am
hmm ok, can you screenshot what you have in design mode please?
December 8, 2015 at 8:12 am
when you say grouping, have you created a new series or category group?
December 8, 2015 at 6:58 am
Try this, should do the trick.
Excuse the sloppy formatting π
declare @AsAtDate Datetime = '2015-01-01'
;with
MinPat as
(
select patientID, indexenddate, M.MinDiff
,ROW_NUMBER() over (partition by patientID order by M.MinDiff) as RowNum
from [dbo].[MDTest2]
cross...
December 8, 2015 at 3:27 am
Indeed, just read what I initially wrote again. Shouldn't be allowed to use my brain before my first coffee π
December 8, 2015 at 2:37 am
GilaMonster (12/8/2015)
Dave Morrison (12/8/2015)
locks escalate in three steps, row, page and then table.
No they don't.
Escalation is straight to table, no matter whether the locks start as row or page....
December 8, 2015 at 2:26 am
No worries, please could you mark the answer π
December 8, 2015 at 2:23 am
Hi, are you asking how to model this, how to set it up in SSAS or how to write MDX to achieve this? π
December 8, 2015 at 2:21 am
so you need to add parameters in the parameters folder under the "Report Data" pane.
If you want a list of values to drive these you'll need a data set for...
December 8, 2015 at 2:18 am
did you migrate logins between the servers before you moved the databases? its possible that some or all of the users at the database level have become orphaned from their...
December 8, 2015 at 2:10 am
locks escalate in three steps, row, page and then table. Its possible that you're not able to escalate to page for one of a number of reasons and therefore its...
December 8, 2015 at 2:07 am
what you're looking for is a row group within the tablix
December 8, 2015 at 2:01 am
Viewing 15 posts - 1 through 15 (of 81 total)