Power BI Custom Visuals Class (Module 30 – Linear Gauge)
In this module you will learn how to use the Linear Gauge Power BI Custom Visual. The Linear Gauge would...
2016-12-21
742 reads
In this module you will learn how to use the Linear Gauge Power BI Custom Visual. The Linear Gauge would...
2016-12-21
742 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-12-14
423 reads
In this module you will learn how to use the Dial Gauge Power BI Custom Visual. While the usefulness of...
2016-12-13
602 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-12-07
838 reads
In this module you will learn how to use the Sankey Power BI Custom Visual. The Sankey is a type...
2016-12-06
966 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-30
825 reads
In this module you will learn how to use the Synoptic Panel Power BI Custom Visual. The Synoptic Panel is...
2016-12-06 (first published: 2016-11-29)
2,102 reads
In this module you will learn how to use the Timeline Power BI Custom Visual. The Timeline is a great...
2016-11-29 (first published: 2016-11-22)
2,559 reads
Welcome back to another episode of This Week In Data! If you missed our previous episodes, you can watch them...
2016-11-16
511 reads
In this module you will learn how to use the Scroller Power BI Custom Visual. The Scroller has the appearance...
2016-11-22 (first published: 2016-11-14)
1,829 reads
By Steve Jones
Superheroes and saints never make art. Only imperfect beings can make art because art...
One feature that I have been waiting for years! The new announcement around optimize...
Following on from my last post about Getting Started With KubeVirt & SQL Server,...
Hi, in a simple oledb source->derived column->oledb destination data flow, 2 of my...
hi, i noticed the sqlhealth extended event is on by default , and it...
Using New-AzSqlInstanceServerTrustCertificate to import a certificate and get the message New-AzSqlInstanceServerTrustCertificate: Long running operation...
I am currently working with Sql Server 2022 and AdventureWorks database. First of all, let's set the "Read Committed Snapshot" to ON:
use master; go alter database AdventureWorks set read_committed_snapshot on with no_wait; goThen, from Session 1, I execute the following code:
--Session 1 use AdventureWorks; go create table ##t1 (id int, f1 varchar(10)); go insert into ##t1 values (1, 'A');From another session, called Session 2, I open a transaction and execute the following update:
--Session 2 use AdventureWorks; go begin tran; update ##t1 set f1 = 'B' where id = 1;Now, going back to Session 1, what happens if I execute this statement?
--Session 1 select f1 from ##t1 where id = 1;See possible answers