How Would You Rate This? - Database Weekly (Dec 29, 2008)
Steve Jones wonders if Microsoft is doing a good job with their efforts to patch SQL Server security issues?
Steve Jones wonders if Microsoft is doing a good job with their efforts to patch SQL Server security issues?
A little procedure to quickly product a script for copying data from one database to another.
At first glance, a client appeared to be violating a cardinal rule of data warehousing. However, Bill Inmon's further investigation revealed that perhaps their actions were acceptable.
Steve Jones looks back at the past year and database news that has occurred.
Steve Jones looks back at the past year and database news that has occurred.
Steve Jones looks back at the past year and database news that has occurred.
OPENROWSET is a T-SQL function that allows for reading data from many sources including using the SQL Server’s BULK import capability.
Steve Jones gives one last update on energy issues in the US in 2008 with a look at the construction and building industries.
Steve Jones gives one last update on energy issues in the US in 2008 with a look at the construction and building industries.
Steve Jones gives one last update on energy issues in the US in 2008 with a look at the construction and building industries.
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...
By Vinay Thakur
Following up on my Part 1 baseline, the journey from 2017 onward changed how...
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...
Comments posted to this topic are about the item An Unusual Identity
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