Finding Objects in a Schema #SQLNewblogger
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,129 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,129 reads
This blog post is about a situation where I went to push my latest local changes to my git repository...
2018-09-27
800 reads
I’ve submitted a session proposal to the free, online GroupBy conference. Voting will open for sessions soon, but before then, you can help me out by reading my abstract....
2018-09-27
4 reads
This article will provide a deep dive into the SQL UNION operator, describing its many uses along with examples and...
2018-09-27
773 reads
Did you know that SQL Saturday Charlotte is just a few weeks away on October 20, 2018? This will be...
2018-09-27
261 reads
Time for a fun post, I have been working on a mini-project using technology from Microsoft Azure to hook into...
2018-09-27
413 reads
Did you know you can’t do this?
DELETE TOP (10)
FROM SalesOrderDetail
ORDER BY SalesOrderID DESC;Msg 156, Level 15, State 1, Line 8
Incorrect...
2018-09-27 (first published: 2018-09-19)
3,203 reads
I’m a big fan of Azure Site Recovery for Disaster Recovery and was glad to attend the Ignite session today...
2018-09-26
61 reads
In today’s post focusing on Azure Cognitive Analytics, I’ll look at the Language Analytics APIs that are available. These language...
2018-09-26
344 reads
As I first mentioned in my blog Microsoft database migration tools, the Azure Database Migration Service (DMS) is a PaaS solution that makes it easy to migrate from on-prem/RDS to Azure...
2018-09-26
30 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
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...
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