Data Visualization Panel at PASS Summit
Next week is PASS Summit 2017, and I’m excited to be a part of it. One of the sessions in...
2017-10-28
366 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
366 reads
This year I had the pleasure of contributing a chapter to a book along with some very special and talented...
2017-10-19
611 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,369 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,545 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,853 reads
I recently got a new laptop and had to go through the ritual of reinstalling all my programs and drivers....
2017-07-20
6,577 reads
I recently worked on a project that used Flow to update a SharePoint list each time an item was updated...
2017-07-17
535 reads
On a recent project I used Azure Data Factory (ADF) to retrieve data from an on premises SQL Server 2014...
2017-05-11 (first published: 2017-05-01)
1,285 reads
I’ve spent the last couple of months working on a project that includes Azure Data Factory and Azure Data Warehouse. ADF...
2017-04-11
601 reads
This month’s T-SQL Tuesday – hosted by Kennie T Pontoppidan(@KennieNP) – is called “The daily (database-related) WTF“. He asked us to be...
2017-03-27 (first published: 2017-03-14)
2,770 reads
Here’s how these tools can make Kubernetes security easier and help you avoid common...
By Steve Jones
lackout – n. the sudden awareness that you’re finally over someone, noticing that the...
By Ed Elliott
All Spark Connect Posts I have just finished an update for the spark connect dotnet...
Comments posted to this topic are about the item Shades and Reflecting on SQLBits...
In Azure SQL DB, i want to merge records from the staging table to...
Full error message: SSRS error: The Value for the image 'Image1' has a constant...
I have a table, called dbo.logger, in SQL Server 2022. I decide to add two new columns to this table with this code.
ALTER TABLE dbo.logger ADD CreateDate DATETIME CONSTRAINT dfGetDate DEFAULT GETDATE() GO ALTER TABLE dbo.logger ADD ModifyDate DATETIME DEFAULT dfGetDate GOWhat happens when I run these two batches? See possible answers