Using Result Set as Variable in Stored Procedure
I’ve been asked several times lately from non-SQL developers that are sometimes required to do some quick SQL work how...
2008-12-08
3,406 reads
I’ve been asked several times lately from non-SQL developers that are sometimes required to do some quick SQL work how...
2008-12-08
3,406 reads
I could have sworn that my SQL Server Magazine seemed much smaller this month. When I pulled out last’s months...
2008-12-07
1,304 reads
I have a long held belief that if you really care about results, you have to measure them somehow. The...
2008-12-07
308 reads
Brent Ozar had a nice post recently on starting a technical blog, well worth reading and a good addition to...
2008-12-07
274 reads
With each new release of SQL Server version, there is something new to learn. In SQL Server 6.5 days, it...
2008-12-05
786 reads
An interesting idea in this video. I’d recommend you watch this if you have too much email. It's from the...
2008-12-05
430 reads
One interesting thing about doing the podcasts and working from home is that I tend to shave a bit more...
2008-12-05
391 reads
There's a lot to it, but I see Tim Ford has a nice blog post on what it means to...
2008-12-04
489 reads
I attended this years PASS Summit in Seattle and it turned out to be a great event. Many of the...
2008-12-04
475 reads
I've been off-line except for hints here and there for the last couple of weeks due to fighting off an...
2008-12-04
1,074 reads
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
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...
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