Viewing 15 posts - 241 through 255 (of 2,458 total)
I'm not an MDX guru but, what you posted is not the complete MDX code. The complete statement would include (at least) a SELECT and an ON statement. The "Average...
June 28, 2017 at 1:26 pm
June 28, 2017 at 11:20 am
June 28, 2017 at 10:24 am
This seams pretty simple; what have you tried so far? Where are you stuck?
June 27, 2017 at 6:10 pm
Dang! Ed beat me to it.
I would add - for optimal performance you want this index in place:
CREATE INDEX nc_poc_employees_level ON dbo.employees(OrganizationLevel);
June 27, 2017 at 2:45 pm
I dont know of any great SSRS books but The Microsoft Press book, SSRS Reporting services is fine. For me SSRS is the kind of thing I learn more by...
June 27, 2017 at 7:53 am
June 22, 2017 at 12:10 pm
I created a function called SubstringBetween8K which was designed for exactly this type of problem. It uses NGrams8K. Here's the function:
CREATE FUNCTION [dbo].[substringBetween8K]
June 22, 2017 at 9:57 am
I've been away for awhile wrapping up a project with some hard deadlines but that's all done and I'm back.
June 14, 2017 at 9:37 pm
Jeff Moden's DelimitedSplit8K is the best in the business on pre-2012 systems and non-max data types; on SQL 2012+ I suggest DelimitedSplit8k_LEAD by Eirikur Eiriksson which is based...
June 14, 2017 at 9:33 pm
I learned something new today: # is a valid temp table name.
CREATE TABLE #(id int);
INSERT # VALUES (1);
SELECT * FROM #;
DROP TABLE...
May 23, 2017 at 3:30 pm
May 22, 2017 at 1:39 pm
Viewing 15 posts - 241 through 255 (of 2,458 total)