An Age of AI?
The age of artificial intelligence seems to be here, but it's a little different to what we were promised.
2019-07-22 (first published: 2016-02-15)
435 reads
The age of artificial intelligence seems to be here, but it's a little different to what we were promised.
2019-07-22 (first published: 2016-02-15)
435 reads
2016-10-17
95 reads
2016-04-18
79 reads
As yet more personal details are spilled by preventable security lapses, what's
2015-11-02
283 reads
The observation that people hear what they want to hear is not a new one, and yet the extent to which people will go out of their way to ignore or misinterpret evidence can still surprise.
2015-06-01
111 reads
Here are some fine, affordable products to completely destroy your work-life balance.
2015-04-27
164 reads
2015-02-16
78 reads
As working hours in tech trend upwards, we look at some ways to make life easier.
2014-10-13
127 reads
An ingenuous use of existing data leads to the thought - when are we so deep in our work that we can't see how to improve?
2014-08-18
42 reads
Trying to take the time to fix sub-par processes has some surprising parallels in nature.
2014-04-28
175 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 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