Office 365 technology – What powers Power BI in Office 365? #0365 #powerbi
Power BI for Office 365 is a new self-service business intelligence (BI) offering enabling businesses to gain insights from their...
2014-02-11
732 reads
Power BI for Office 365 is a new self-service business intelligence (BI) offering enabling businesses to gain insights from their...
2014-02-11
732 reads
Rob’s got a good post called What is Power Pivot’s #1 Competitor? which has some great comments, as well as...
2014-02-11
690 reads
The Genealogy of Baseball Teams chronicles the origin and evolution of baseball teams from every major league from the inception...
2014-02-11
355 reads
2014-02-11
255 reads
At our last MVP summit, I sat in on a session on PowerQuery. Our presenter, who is pretty passionate about...
2014-02-11
329 reads
Hey Guys!
I have come across this amazing EXCEL Championship being organized by dezyre.com. They are offering an amazing cash prize!
from...
2014-02-10
323 reads
Toyota may have plans to end production of the FJ Cruiser but the aftermarket continues to bring out new off...
2014-02-09
563 reads
Satya Nadella’s appointment as the new CEO of Microsoft, coupled with the news that Bill Gates would step down as...
2014-02-09
369 reads
Analyst firm RedMonk periodically publishes rankings of the Top 20 programming languages, as measured by activity on StackOverflow and number...
2014-02-09
874 reads
This week, we released Management Packs for SQL Server 2008 and 2012 Analysis Services. The corresponding downloads are available at:
System ...
2014-02-09
684 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
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...
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