Local Database Issues
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
72 reads
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
72 reads
2016-11-14
1,144 reads
SQL Prompt has lots of great features that can help you write SQL quicker. However, you’ve got to train yourself...
2016-11-11 (first published: 2016-11-01)
1,677 reads
2016-11-11
167 reads
2016-11-11
1,351 reads
2016-11-10
129 reads
I’ll be at the last big SQL Server conference in the US for 2016 this December. VS Live is a...
2016-11-10 (first published: 2016-11-02)
918 reads
2016-11-10
929 reads
2016-11-09
1,116 reads
When we set up Game Night, we decided to sell tickets to reduce our risk. However, we didn’t have a...
2016-11-08
564 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