Developing Your DBA Skills Further Thanks to Experience with Multiple RDBMS
Any DBA who really understands databases and SQL standards can make out with other RDBMSs quite well, and if they...
2010-02-24
3,039 reads
Any DBA who really understands databases and SQL standards can make out with other RDBMSs quite well, and if they...
2010-02-24
3,039 reads
We had a spammer post a bunch of random, silly posts last week. I knew it was an issue when...
2010-02-24
756 reads
If you’ve been around SQL for any length of time it’s hard not to have heard of Brad McGehee, the...
2010-02-24
566 reads
I’m presenting tomorrow on Zero to Cube in 60 minutes. This is an all Demo Session for work with cubes...
2010-02-24
416 reads
There are a few ways to get data from a client to your system; FTP or email. Internally we tend...
2010-02-24
621 reads
Notice I didn't title this "Plan to Fail." We should never plan to fail. That's sabotage. And that ain't right,...
2010-02-24
1,019 reads
I have a fairly busy schedule of upcoming speaking events (especially for someone with a full-time day job).
I will be...
2010-02-24
919 reads
If you haven’t attended a SQLLunch, I suggest that you put this upcoming lunch on your schedule. Brad McGehee, SQL...
2010-02-24
1,018 reads
I recently had a SQL Server DBA write to me that they were going to be laid off, and they...
2010-02-24
683 reads
Over the past several years, I have given 2-3 live web presentations a year, and I have always found them...
2010-02-23
647 reads
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
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...
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