Power BI Custom Visuals Class (Module 15 – Table Heatmap)
In this module you will learn how to use the Table Heatmap Power BI Custom Visual. The Table Heatmap has...
2016-09-13 (first published: 2016-09-06)
1,989 reads
In this module you will learn how to use the Table Heatmap Power BI Custom Visual. The Table Heatmap has...
2016-09-13 (first published: 2016-09-06)
1,989 reads
Welcome back to another episode of This Week In Data! In our first episode,Adam and Devin debated the value of...
2016-08-31
771 reads
In this module you will learn how to use the Tornado Power BI Custom Visual. The Tornado allows you to...
2016-08-29
1,074 reads
We know you you’ve been dying to know, what is TWID? Drumroll please…. We’re excited to announce the launch of...
2016-08-24
483 reads
In this module you will learn how to use the Aster Plot Power BI Custom Visual. The Aster Plot is...
2016-08-22
1,084 reads
In this module you will learn how to use the Bullet Chart Power BI Custom Visual. The Bullet Chart serves...
2016-08-30 (first published: 2016-08-19)
2,738 reads
In this module you will learn how to use the Calendar Visualization Power BI Custom Visual. The Calendar Visualization is...
2016-08-16 (first published: 2016-08-10)
2,577 reads
In this module you will learn how to use the Card with States Power BI Custom Visual. The Card with...
2016-08-01
1,213 reads
In this module you will learn how to use the Chord Power BI Custom Visual. Chord diagrams show directed relationships...
2016-08-02 (first published: 2016-07-25)
2,292 reads
Today marks one years since Power BI was officially released. It’s been an amazing ride and I’d like to thank...
2016-07-24
496 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