Dustin Ryan: Power Pivot 101: An Introduction
The PASS Excel Business Intelligence virtual chapter presents Dustin Ryan introducing everybody to Power Pivot in Excel. This chapter has...
2015-09-07
653 reads
The PASS Excel Business Intelligence virtual chapter presents Dustin Ryan introducing everybody to Power Pivot in Excel. This chapter has...
2015-09-07
653 reads
DevConnections is a new conference for me and I am excited about the opportunity to present 2 different sessions. The...
2015-08-11
613 reads
This is I believe the 7th SQLSaturday in Baton Rouge. Please come out this Saturday at the LSU Business Center...
2015-07-27
598 reads
You can download the much hyped up Power BI Desktop (formerly Power BI Designer). There are many blogs about the...
2015-07-24
1,124 reads
The next version of SQL Server looks to add more and more features helpful in database design and administration as...
2015-07-16
981 reads
I was thinking today about why I submit sessions to speak at the PASS Summit.
My first summit was in Denver...
2015-06-26
431 reads
Join us today at noon central for Asgeir presenting for the Excel BI VC.
Thu, Jun 18 2015 12:00 Central Daylight...
2015-06-18
444 reads
I have been selected again to speak in Houston (Saturday, June 13th) for a SQLSaturday event and look forward to...
2015-06-04
532 reads
It is that time of the year when PASS starts a process to help update memberships and clean up duplicate...
2015-05-07
438 reads
Microsoft has given us DBAs/Developers/etc. a wealth of free reports integrated into SQL Server Management Studio (SSMS) in order to...
2015-04-07
796 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