Cloning Virtual Box Images in Windows 7
I use VirtualBox from Sun to do SQL testing since it supports 64-bit guest images, which I want need for...
2010-09-10
1,608 reads
I use VirtualBox from Sun to do SQL testing since it supports 64-bit guest images, which I want need for...
2010-09-10
1,608 reads
I have been trying to better track my goals this year, and find myself failing at some, exceeding at others....
2010-09-10
413 reads
It’s not safe for work (NSFW), so be sure that you’ve implemented a cone of silence as appropriate for your...
2010-09-10
611 reads
Someone who I follow on twitter posted a tweet recently with a link to a free eBook on PowerShell. I...
2010-09-10
2,590 reads
I was channel flipping after dinner when I saw this and had to stop to watch a few minutes of...
2010-09-10
306 reads
Today we’re announcing the call for speakers for pre-conference seminars at the first SQLRally being held in Orlando in May...
2010-09-10
749 reads
It appears our success with the SQLRally Logo Design Contest has struck a chord with PASS HQ. This morning Rick...
2010-09-10
811 reads
Well, as many of you in this space may already know that SQLSaturday#59 in @MS HQ in NYC, on November...
2010-09-10
519 reads
2010-09-10
450 reads
If you are having SQL Server Database connection issues, I reckon they could be due to one of two connection...
2010-09-09
26,026 reads
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers