SSAS Maestro - Redmond Recap
Well today was the last day for a while I would be greeted by this sign:
It was a pretty exciting...
2011-06-18
850 reads
Well today was the last day for a while I would be greeted by this sign:
It was a pretty exciting...
2011-06-18
850 reads
Wow, what a day 2! This was our first day of lecture and it was a doozy. Stacia and I...
2011-06-14
860 reads
Well it’s been an exciting couple of weeks leading up to this course. We have tweaked what we could in...
2011-06-13
629 reads
One of the things I’m most proud of at our company is our team.You can see some of our team...
2011-02-11
707 reads
This next week I’m launching a series of posts centered around how you could be a part of the leading...
2011-02-10
616 reads
Ok so dynasty might be a bit strong, but check out this
newest volume from the folks @ Pragmatic Works. We...
2011-02-08
619 reads
And a bunch of other people who are really talented. My Zero to Cube session won the Summit Spotlight track...
2011-02-08
754 reads
Hey folks. I think we can all agree that there is some really quality training available for free on the...
2011-01-30
1,432 reads
Let me start of by saying I could have taken this picture in Florida. But I didn’t. I was in...
2011-01-30
1,315 reads
Hey Everyone – SQL Rally Voting opens today for the BI Track. There are lots of good sessions and at the...
2011-01-30
1,329 reads
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers