2016-12-19
928 reads
2016-12-19
928 reads
With the holiday season here, Steve Jones wonders what you'll do for fun away from work.
2016-12-16
118 reads
Awhile back I was working in SSMS and saw this window.
It threw me off since I was trying to write...
2016-12-16 (first published: 2016-11-30)
1,828 reads
2016-12-16
927 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2016-12-15
631 reads
Here’s a shot from our engineer, behind the scenes of my live talk today.
Tom Austin and @way0utwest live at #sqlinthecity...
2016-12-15
643 reads
2016-12-15
1,352 reads
2016-12-14
71 reads
SQL Server is growing as a platform and Steve Jones says that DBAs need to learn development skills.
2016-12-13 (first published: 2014-01-07)
626 reads
I’m at the Redgate Software offices this week. I come over to visit the company, my boss and our department,...
2016-12-13
498 reads
By Brian Kelley
But as I've matured over the years, I came to realize that I needed...
By alevyinroc
I will be presenting my latest session, Documenting Your Work for Worry-Free Vacations, in-person...
By Steve Jones
I saw a question asking about the next sequence value and decided to try...
I've read a few posts regarding what we use to design DB models and...
I've got a table with 186,703,969 rows, about 300GB of data. There are several...
I created a SQL Database in Azure Portal but I've just noticed it also...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers