Using Kickstarter to Save Neil Armstrongs Spacesuit
Ran across this while visiting the Air & Space Museum over the summer, the Smithsonian launched a Kickstarter campaign to raise...
2015-08-05
675 reads
Ran across this while visiting the Air & Space Museum over the summer, the Smithsonian launched a Kickstarter campaign to raise...
2015-08-05
675 reads
How to Keep Up With SQL Server ran as the editorial of the day on July 31st. Modest amount of...
2015-08-04
584 reads
It can be a challenge to keep up with the rapidly evolving SQL Server platform. Andy Warren has a few ideas today.
2015-07-31
377 reads
Would You Pay to Wear Jeans at Work turned out to be popular piece when posted a couple weeks back. The...
2015-07-28
631 reads
We have a solid tradition here in Orlando of offering some all day classes the Thursday and Friday before SQLSaturday....
2015-07-20
632 reads
For this Friday, Andy Warren asks if you would pay to change your wardrobe for work.
2015-07-17
238 reads
The next OPASS meeting is July 23, 2015, featuring David Crook from Microsoft doing a presentation on predicting home value...
2015-07-16
547 reads
Posted last week, Is the Golden Age of Information Technology Almost Over? generated some interesting comments. It’s tough to write about potential...
2015-07-16
544 reads
Today is the last day to submit your name as a candidate for the NomCom. If you’re a PASS member...
2015-07-14
528 reads
PASS announced yesterday the end of the SQLRally brand. It was disappointing news for an idea that started with such...
2015-07-14
654 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