Viewing 15 posts - 2,011 through 2,025 (of 3,489 total)
I'm not an expert on SSAS, so I can't answer that part, but PowerBI lets you build a quick star schema and start analyzing data immediately. SSAS can do...
March 21, 2016 at 5:54 pm
Hi,
this is close, but not quite right, I think... First off, since you're new, it would help those folks trying to help you if you could post your table...
March 21, 2016 at 10:00 am
Jeff,
Just wondering what you would say to an applicant that admitted up front that he may be underqualified, but asked you to help him figure out what he needed to...
March 20, 2016 at 11:46 am
I would start by reading this article: The "Numbers" or "Tally" Table: What it is and how it replaces a loop[/url]
March 19, 2016 at 12:29 pm
well, people on the US side of the pond might not know it...
March 19, 2016 at 9:28 am
Then honestly I'd leave it off. I don't think it's worth the space.
March 19, 2016 at 8:56 am
If, for some odd reason, you can have actuals records with no budget, and the reverse, then you would need a full outer join between the two tables, not an...
March 18, 2016 at 5:55 pm
I would start with looking up Gaps and Islands. There's Itzik Ben-Gan's code, which is a good starting point. Dig around there. Dwain Camps wrote some. how...
March 18, 2016 at 6:05 am
What columns you include in your date dimension should probably be determined by what kinds of summaries you intend to do with dates...
March 17, 2016 at 9:08 pm
Or link to your SQL Server database and use linked tables etc... I wouldn't waste a lot of space on my resume on Access. The market for it is almost...
March 17, 2016 at 6:43 pm
I got this to work...
I started with a dataset with a date column, Consent_Date.
Created a new table and entered this:
NewDateTable = CALENDAR(MINX('PatientSymptoms',[CONSENT_DATE]),MAXX('PatientSymptoms',[CONSENT_DATE]))
... which generated a table of all the...
March 17, 2016 at 3:09 pm
At the bottom of this page, it says that there are both 32- and 64-bit versions of SSRS.
March 17, 2016 at 1:33 pm
add a case sensitive collation to your query.
Here[/url]'s a really good example.
here's one I did ...
SELECT *
FROM dbo.Patient
WHERE LastName COLLATE Latin1_General_CS_AS LIKE 'Do%';
so a last name starting with 'DO' would...
March 15, 2016 at 3:21 pm
Removed the "compare to last week" part...
looks like there's a piece missing:
FROM MyData T1
LEFT JOIN T2
ON DATEADD(yyyy,-1,T1.InvoiceDate) = T2.InvoiceDate
(I think).
March 15, 2016 at 1:05 pm
I'm pulling week to date sales data (ex. if I were to run it tomorrow it would pull sales totals for Monday and Tuesday of this week). But, I want...
March 15, 2016 at 12:30 pm
Viewing 15 posts - 2,011 through 2,025 (of 3,489 total)