Missing some folks
In a community the size of SQL Server Central, it's natural for people
to come and go, especially with contributions to...
2005-12-15
1,324 reads
In a community the size of SQL Server Central, it's natural for people
to come and go, especially with contributions to...
2005-12-15
1,324 reads
I get a lot of email at SQLServerCentral.com on a variety of topics. Complaints about my writing, comments on the...
2005-12-14
1,450 reads
Had a need for this the other day. We just needed a quick dump of which
drives each database was using....
2005-12-09
1,370 reads
I wrote a little in the editorial, but I wanted to drop some other observations here.
First, apologies for not blogging...
2005-12-07
1,437 reads
I saw this first on Karen Watterson's blog. Microsoft has released an update to SQL Server 2005's Books Online:
Download
A quick...
2005-12-07
1,461 reads
Maybe not certified, but I took the 70-441 test today and I thought it was relatively easy. The format was...
2005-12-02
1,369 reads
Slowly reworking my professional site at http://www.truthsolutions.com/
but as of right now it's more of a brochure site than anything else....
2005-11-30
1,286 reads
I wrote an editorial on the 64-bit decision by Exchange to not release
their next version in 32 bit. Only 64....
2005-11-29
1,435 reads
SQL Server MVP Erland Sommarskog has announced
a name change to MSSQL::OlleDB. It's now known as Win32::SQLServer.
This is to bring it...
2005-11-27
1,342 reads
Looked over at the Apex SQL site and noticed they released a new
version of ApexSQL Edit last weekend. I went...
2005-11-26
1,509 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