#SQLNewBlogger – T-SQL ESCAPE for Wildcards
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-11-17
724 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-11-17
724 reads
Microsoft Connect(); is a developer event from Nov 16-18, where plenty of announcements are made. Here is a summary of the...
2016-11-17
618 reads
Not only did we receive a brand new Service Pack for SQL Server 2016 this week, since yesterday we are...
2016-11-17
874 reads
What is Residual Predicate?
Lets say one gets a query to fine tune. While checking the execution plan, if there is...
2016-11-17 (first published: 2016-11-13)
4,627 reads
SQL Server 2016 SP1 has released last night and most of the features that were previously part of enterprise edition...
2016-11-17
723 reads
We all know that if you want SQL Server to push data into a table then you want to batch the...
2016-11-17 (first published: 2016-11-14)
9,489 reads
One of the things I’ve been wanting to do is dig more into the command line automation cmdlets from the...
2016-11-16
678 reads
Last week at the Birmingham user group I gave a presentation about PowerShell and SQL Server
It was a very packed...
2016-11-16 (first published: 2016-11-13)
1,825 reads
This is just a quick look. I plan on diving into this in the future more, as I'm still working...
2016-11-16
219 reads
This is just a quick look. I plan on diving into this in the future more, as I'm still working...
2016-11-16
3,371 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