My 1st Blog – out of memory exceptions in SSDT… yes its technical
When unit testing a stored procedure in visual studio 2012 (SSDT); sometimes you can get a out of memory exception...
2013-07-08
966 reads
When unit testing a stored procedure in visual studio 2012 (SSDT); sometimes you can get a out of memory exception...
2013-07-08
966 reads
When unit testing a stored procedure in visual studio 2012 (SSDT); sometimes you can get a out of memory exception...
2013-07-08
442 reads
If you ever need to know exactly what dml your application is running as you have an ORM as your...
2013-07-08
451 reads
If you ever need to know exactly what dml your application is running as you have an ORM as your...
2013-07-08
461 reads
In the last post, we have discussed about the auto update statistics threshold and concluded that auto updated statistics threshold are good...
2013-07-08
1,633 reads
Consider this scenario; Your production database server is new and with super configuration of 32 CPUs, 64G RAM, SAN Storage,...
2013-07-08
345 reads
Huge sandwich from recent trip to downtown Chicago
First, I want to acknowledge that I’ve been pretty quiet on here lately....
2013-07-07
725 reads
It’s Sunday night now, weekend is almost over and was it just a few moments ago that it was Friday?...
2013-07-07
327 reads
(Be sure to checkout the SQLpassion Online Academy, where you get High-Quality SQL Server Trainings with Instant Access!)
Today I have...
2013-07-07
1,548 reads
For a weekend project, I’m installing Hyper-V 2012 in my home lab. I was having troubles getting Hyper-V installed on...
2013-07-06
888 reads
By Vinay Thakur
Following up on my Part 1 baseline, the journey from 2017 onward changed how...
By Brian Kelley
In cryptography, the RSA and ECC algorithms which we use primarily for asymmetric cryptography...
By Steve Jones
In today’s world, this might mean something different, but in 2010, we had this...
Comments posted to this topic are about the item An Unusual Identity
Comments posted to this topic are about the item Prompt Requests
Comments posted to this topic are about the item T-SQL in SQL Server 2025:...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers