Enough - Database Weekly (Oct. 20, 2008)
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
Sometimes determining who owns the data or information isn't that easy. Steve Jones has an example from the US election in 2008.
Sometimes determining who owns the data or information isn't that easy. Steve Jones has an example from the US election in 2008.
Sometimes determining who owns the data or information isn't that easy. Steve Jones has an example from the US election in 2008.
Kalen Delaney has a series on internals and performance taking place in Hertfordshire soon. If you register today, you can still save 20%
Solve your SQL Server error, problem or installation failure with this advice. Learn how to fix SQL performance errors and suspect data recovery problems.
Learn how executing frequent backups and maintaining healthy transaction logs in SQL Server leads to quick recovery. Failing to do so can mean having to re-enter a lot of data.
The loss of data is getting ridiculous. Steve Jones wants companies and government to do something about it.
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
With all the concern over the economy lately, Steve Jones talks about about finances and tries to bring perspective to those of us in the real world.
By Vinay Thakur
Following up on my Part 1 baseline, the journey from 2017 onward changed how...
By Brian Kelley
In cryptography, the RSA and ECC algorithms which we use primarily for asymmetric cryptography...
By Steve Jones
In today’s world, this might mean something different, but in 2010, we had this...
Comments posted to this topic are about the item An Unusual Identity
Comments posted to this topic are about the item Dancing Robot Goes Rogue
Hi , i installed winscp on my pc, added it to GAC thru vs...
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