SQL Saturday #28 “Refer a Friend Contest”
With all the MSDN give away contests, I decided to add another. Here are the official rules for the twitter...
2010-07-12
562 reads
With all the MSDN give away contests, I decided to add another. Here are the official rules for the twitter...
2010-07-12
562 reads
Red Gate Books has published a new e-book called “SQL Server DMV Starter Pack”, which you can download for free...
2010-07-12
2,075 reads
The planning team of SQLSaturday #49 – Orlando and OPASS are proud to announce that there will be a pre-conference seminar...
2010-07-12
772 reads
Have you ever had a scheduled run of one of your SSIS packages fail? Have you ever wished you had...
2010-07-12
2,041 reads
In my last two posts I talked specifically about the process. This round I’m going to discuss the tools of...
2010-07-12
608 reads
TSQL Tuesday is fast upon us once again. In fact, in my time zone, it is just a day away.
This...
2010-07-12
580 reads
UPDATE: Additional Microsoft MVPs have joined the project and we will now be selecting at least two (2) now three...
2010-07-12
468 reads
One of the supposed advantages of the EF is that it abstracts you from
your database implementation. This is considered to...
2010-07-11
1,315 reads
Up early, the only one in the house, so I made coffee, sat down to check on SSC and the...
2010-07-11
344 reads
If you’re working with PowerShell and SQL Server one of things you’ll want to to do is load the SQL...
2010-07-10
3,247 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