Last Week Reading (2019-02-17)
Power BI Desktop February 2019 Feature Summary Preview of new Key Influencers visual and much more… The February release of...
2019-02-17
113 reads
Power BI Desktop February 2019 Feature Summary Preview of new Key Influencers visual and much more… The February release of...
2019-02-17
113 reads
I won’t blog all of these we do, but wanted to capture a few thoughts and then revisit later in...
2019-02-17
119 reads
I drove over to Melbourne on to speak to the group, hadn’t been over in a while. Quick notes:
8 attendees,...
2019-02-17
107 reads
A great experience!
Thanks to all the atendess to my session about T-SQL, for being my first time as a speaker for a SQL Saturday it was good!As I promised,...
2019-02-17
10 reads
I’ve finally updated my Power BI Architecture Diagram to include some of the new features that are now available and...
2019-02-16
783 reads
A great experience!Thanks to all the atendess to my session about T-SQL, for being my first time as a speaker...
2019-02-16
142 reads
Note: I’ve been meaning to start a series on the basics of SQL Server Reporting Services (SSRS). The last time...
2019-02-16
378 reads
Several weeks ago, while on a flight traveling home from San Francisco, I received an exciting email. I had submitted...
2019-02-15
481 reads
Check how many bicycles he has got at home and where was the destination of last year of a 400...
2019-02-15
109 reads
If you ever tried to capture a benchmark on your SQL Server, you probably know that it is a complex...
2019-02-15
481 reads
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers