Upcoming Webinar - Introduction to Power BI
Come join me for this webinar on 3/13/2014 at 11:00 AM EST
Introduction to Power BI
The future of Business Intelligence has...
2014-02-28
1,353 reads
Come join me for this webinar on 3/13/2014 at 11:00 AM EST
Introduction to Power BI
The future of Business Intelligence has...
2014-02-28
1,353 reads
I hope you were able to attend my free webinar on Choosing the Right Analysis Services: MOLAP vs. Tabular on...
2014-02-17
1,737 reads
Today Microsoft has officially announced the release of Power BI for Office 365. You can read the Power BI teams...
2014-02-10
1,419 reads
Today is the final day for the Power BI Contest voting and I could use your help to move on...
2014-01-30
1,326 reads
You’ve watched my video (hopefully) now vote for it! In a previous post I wrote about my Power BI contest...
2014-01-20
703 reads
Today I submitted my Power BI contest entry and I’d love for you to take a look! Here’s a short...
2014-01-08
919 reads
With the recent updates to the Power BI preview and Q&A features added I thought I would do a quick...
2013-12-18
1,063 reads
One of the nice new features that was added to Power Query with the latest update in December is the...
2013-12-18 (first published: 2013-12-13)
2,680 reads
Just in time for Christmas the Microsoft product teams responsible for Power BI have a slew of amazing updates. The...
2013-12-11
918 reads
A little gem was included with the latest Office 365 update. After downloading and installing this update you will now find...
2013-11-18
935 reads
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...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
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
Comments posted to this topic are about the item Restoring On Top I
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