Scratch – A Programming Language for Kids
I ran across Scratch in a PC World article a while back. It’s a free download from MIT, and is...
2009-12-28
613 reads
I ran across Scratch in a PC World article a while back. It’s a free download from MIT, and is...
2009-12-28
613 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
734 reads
It’s been almost 4 weeks without my laptop. I mailed it back to Toshiba and they received it on Dec...
2009-12-28
771 reads
Someone submitted an article recently that walked through how to find the rules in your database, which columns they were...
2009-12-28
761 reads
We usually stuff stockings with little things for each other in the family. Sometimes it’s junk, or candy, but this...
2009-12-26
674 reads
Following steps happened when sql server starts… we can see that in error log::
1. Build of sql server and...
2009-12-25
666 reads
Just a short Happy Holiday, Merry Christmas wish to everyone out there. Enjoying our White Christmas here in Denver.
2009-12-25
744 reads
Hope you’re enjoying a break from the routine and spending quality time with family. Xmas for me is a time...
2009-12-24
681 reads
Happened to channel surf across this on TV, found the list - http://blog.vh1.com/2009-04-01/100-greatest-one-hit-wonders-of-the-80s-read-the-list-2/. Many of the links seem to point to...
2009-12-24
829 reads
Merry Christmas to everyone. As many of you know, at least I hope you do, I am a born-again Christian...
2009-12-24
352 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