HOWTO-Get-T-SQL-Into-SSDT
Ok so you have created an SSDT project and are currently congratulating yourself on how awesome and cool you are...
2015-04-08
32 reads
Ok so you have created an SSDT project and are currently congratulating yourself on how awesome and cool you are...
2015-04-08
32 reads
Ok so you have created an SSDT project and are currently congratulating yourself on how awesome and cool you are but then you realise that your project is like...
2015-04-08
6 reads
Today at 11am Central time I will be presenting a new session entitled “Journey to Being a Consultant” for the...
2015-04-08
527 reads
I’m by no means an expert in SQL Server encryption. What I do know however, is that the Service Master...
2015-04-08
818 reads
At the Charlotte BI Group meeting last night, one of the questions I was asked after I gave my talk...
2015-04-08
284 reads
A “data lake” is a storage repository, usually in Hadoop, that holds a vast amount of raw data in its...
2015-04-08
2,648 reads
I thought this would work, but I wasn’t sure. I saw some code the other day like this:
DECLARE@charASCHAR(1);
SET@char=NULL;
SELECTISNULL(@char, 0);
SELECTCOALESCE(@char, 0);
SET@char='E';
SELECTISNULL(@char,...
2015-04-07
644 reads
In the first article on this topic (which can be read here), I discussed the problem of having a database get dropped and the need to find out who...
2015-04-07
12 reads
This post is part of Ed Leighton-Dick’s SQL New Blogger Challenge. Please follow and support these new (or reborn) bloggers.
I’m working with a number of SQLite databases as extra data...
2015-04-07
54 reads
Would your coworkers know how to handle your job if you weren’t there?
This question was top-of-mind for me last week...
2015-04-07
1,094 reads
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
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...
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