Power BI Custom Visuals Class (Module 20 – Word Cloud)
In this module you will learn how to use the Word Cloud Power BI Custom Visual. The Word Cloud is...
2016-10-18 (first published: 2016-10-10)
1,832 reads
In this module you will learn how to use the Word Cloud Power BI Custom Visual. The Word Cloud is...
2016-10-18 (first published: 2016-10-10)
1,832 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-10-05
440 reads
In this module you will learn how to use the Chiclet Slicer Power BI Custom Visual. The Chiclet Slicer is...
2016-10-04
966 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-28
1,245 reads
In this module you will learn how to use the Stream Graph chart Power BI Custom Visual. The Stream Graph...
2016-10-11 (first published: 2016-09-27)
2,329 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-21
583 reads
In this module you will learn how to use the Sunburst chart Power BI Custom Visual. The Sunburst chart is...
2016-09-27 (first published: 2016-09-19)
1,904 reads
In this module you will learn how to use the Bubble chart Power BI Custom Visual. The Bubble chart allows...
2016-09-22 (first published: 2016-09-15)
1,529 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-14
515 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-09-07
853 reads
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...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
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
Comments posted to this topic are about the item Designing Delta Tables with Liquid...
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