Design Concepts For Better Power BI Reports Part 4: The Squint Test
Data visualization should be iterative. You should get a good initial draft put together and then check to make sure...
2017-12-22
778 reads
Data visualization should be iterative. You should get a good initial draft put together and then check to make sure...
2017-12-22
778 reads
The Gestalt principles of visual perception describe how humans tend to organize visual elements into groups or unified wholes to...
2017-12-18
705 reads
I have decided to write a series of blog posts about visual design concepts that can have a big impact...
2017-12-08 (first published: 2017-11-27)
2,408 reads
I recently worked on a project where a client wanted to use Biml to create SSIS packages to stage data...
2017-12-05 (first published: 2017-11-22)
1,256 reads
Preattentive attributes are visual properties that we notice without using conscious effort to do so. Preattentive processes take place within 200ms...
2017-11-30
841 reads
Next week is PASS Summit 2017, and I’m excited to be a part of it. One of the sessions in...
2017-10-28
369 reads
This year I had the pleasure of contributing a chapter to a book along with some very special and talented...
2017-10-19
614 reads
A while back I created the Tabular Model Documenter Power BI model that can connect to your SSAS Tabular or...
2017-09-26 (first published: 2017-09-19)
2,375 reads
Last month I worked on a proof of concept testing Power BI Report Server for self-service BI. The client determined...
2017-09-25 (first published: 2017-09-18)
3,553 reads
Back in January 2016, I wrote a blog post explaining a DAX workaround that allows you to put measures on...
2017-08-29 (first published: 2017-08-11)
1,856 reads
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,...
By DesertDBA
I haven’t posted in a while (well, not here at least since I’ve been...
hi, i noticed the sqlhealth extended event is on by default , and it...
Hi everyone, I’m looking for some guidance on a SQL Server performance issue I’ve...
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