SQL Server Management Studio Tips & Tricks From Dr Greg Low
It’s been a bit slow in the US this week due to the American 4th of July holiday, but it’s...
2018-07-10 (first published: 2018-07-05)
3,478 reads
It’s been a bit slow in the US this week due to the American 4th of July holiday, but it’s...
2018-07-10 (first published: 2018-07-05)
3,478 reads
This month’s T-SQL Tuesday is hosted by Bert Wagner and he asks us to write about code we’ve written that we would hate to live without.
First off, “hate” is...
2018-07-10
9 reads
We all have our favorite scripts, tools or utilities. Those are the things that help make our jobs easier. In this article, I share with you a poor mans...
2018-07-10
6 reads
For this month’s T-SQL Tuesday Bert Wagner invites us to share SQL scripts we’ve written that we’d hate to live...
2018-07-10
295 reads
I got the news of my MVP award last week. I’m honored that Microsoft feels I do quite a bit...
2018-07-09
340 reads
As Hadoop is already a great on BIG Data, now as you know hadoop has addition stuff in it with...
2018-07-09
704 reads
If you read official Microsoft documentation about naming conventions for your SQL elastic pools, it is hard to find any...
2018-07-09 (first published: 2018-07-02)
1,950 reads
Back to the SQL Server Basics with Wayne
The Myth
I recently was attending a presentation where the presenter stated that the...
2018-07-09 (first published: 2018-06-28)
2,431 reads
Situation SQL Server registers every missing index. Here is how you retrieve that information from the missing index DMV’s [crayon-5c335dbc1c266788449988/]...
2018-07-07
397 reads
Situation Good index management is key to success. Having too many unused indexes around slows down your system. It is not...
2018-07-07
518 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