24 Hours of PASS is coming people!
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check it out here...
2010-08-19
178 reads
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check it out here...
2010-08-19
178 reads
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS.
It’s coming on quickly so make...
2010-08-19
209 reads
Yup, you guessed it, another post about the nominations for the PASS Board of Directors. If you're tired of reading...
2010-08-19
1,002 reads
I found Career Warfare: 10 Rules for Building a Successful Personal Brand on the Business Battlefield by David D’Alessandro ($12@...
2010-08-19
897 reads
Hey there gang ! – It’s been a while since I’ve written on here and I apologize. It’s shameful I know. I...
2010-08-19
363 reads
At the recent SQLSaturday #28 in Baton Rouge, LA, I had the opportunity to meet Wes Brown (Blog | Twitter), and...
2010-08-19
472 reads
A query to find out which Stored Procedures are taking the longest to run ( in this example – the Top 10).
I’m sure there are...
2010-08-19
688 reads
Pretty exciting stuff gang! I have an approved session and an alternate for the PASS Summit in November. The SQL...
2010-08-19
315 reads
What are we talking about?
Recently Microsoft released a new version of SQL Server 2008 R2 called Parallel Data Warehouse Edition....
2010-08-19
784 reads
I get to work with a lot of different clients and client environments and like many companies they are often...
2010-08-19
344 reads
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
By Vinay Thakur
Transparent Data Encryption(TDE): TDE was initially introduced in SQL Server 2008 Enterprise Edition; this...
By Steve Jones
Only a little break for me. I’m actually heading to Las Vegas today for ...
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