Viewing 15 posts - 1,801 through 1,815 (of 3,502 total)
It appears that Steve Jones (the guy that runs this show... I mean website) wrote several articles about tSQLt. This is the first one[/url]. Try reading some of...
September 7, 2016 at 1:14 pm
I think the one migration/upsizing path that is not available is from PowerBI Desktop to SSAS.... so of course, that's what I did. Just seems strange that you can...
September 7, 2016 at 1:09 pm
Will do. I guess I'm still a serious noob when it comes to DAX... just getting my head around the way it works is hard!!!
I was thinking I should just...
September 7, 2016 at 12:45 am
Bummer. That's what I was afraid of.
What do you do if the model is missing a measure or two and maybe some useful calculated columns? Call the developer, because...
September 5, 2016 at 1:43 pm
Looks like this should do it...
http://stackoverflow.com/questions/11301383/automatically-drop-and-recreate-current-indexes
EXEC sp_MSforEachTable 'ALTER INDEX ALL ON ? DISABLE'
and
EXEC sp_MSforEachTable 'ALTER INDEX ALL ON ? REBUILD'
is all you need if you want to do it for...
September 4, 2016 at 9:21 pm
Open SSMS.
Right-click the Databases folder in Object Explorer. One of the options is ATTACH. It should prompt you for file locations of the data and Log files
September 4, 2016 at 4:32 pm
did you not try attaching them? (Don't forget the log files).
September 3, 2016 at 6:59 pm
Okay... having added a bunch of references about partitioning, read this one[/url] first... It's Gail Shaw's... (don't know why I didn't start there!). Be sure you understand what partitioning...
September 3, 2016 at 1:10 am
Is there a good beginner book on Multi-Dimensional / Tabular? I've been playing with DAX for a while (and I'm still terrible at it!)
Especially one that covers security/RLS.
August 30, 2016 at 3:41 pm
Per Joey D'Antoni. About face, go back to Excel, upsize from there. There's a hack, but for what I'm doing, not worth the hassle.
August 30, 2016 at 1:45 pm
Hi,
Welcome to SSC. Since you're new and your question isn't entirely clear, perhaps reading one (or both) of these articles will help us to help you.
August 29, 2016 at 3:47 pm
Where's the PARTITION BY Company part of your query? PARTITION BY is analogous to GROUP BY... and it seems to be missing, so the totals/counts won't "restart" when the Company...
August 29, 2016 at 2:55 pm
First things first, since you clearly missed it.
Forum Etiquette: How to post data/code on a forum to get the best help[/url]
If you post some consumable data, this probably isn't...
August 28, 2016 at 9:44 pm
" even tho it will double the rows to load into the dim"... so? If you have a normal data warehouse, the number of rows in a dimension table...
August 25, 2016 at 2:51 am
Viewing 15 posts - 1,801 through 1,815 (of 3,502 total)