Viewing 4 posts - 16 through 19 (of 19 total)
The DAC port is assigned dynamically by SQL Server during startup. When connecting to the default instance, the DAC avoids using a SQL Server Resolution Protocol (SSRP) request to the...
June 13, 2012 at 1:55 am
CREATE TABLE t(id INT IDENTITY, i INT)
BEGIN TRAN
INSERT INTO t VALUES (4),(2),(3)
SELECT * FROM t
ROLLBACK TRAN
SELECT * FROM t
INSERT INTO t VALUES (4),(2),(3)
SELECT * FROM t
where is rollback?
February 6, 2012 at 2:02 am
DECLARE @t TABLE (id INT)
SELECT SUM(1) AS sum_, COUNT(*) AS cnt_ FROM @t
sum_=NULL
cnt_=0
November 22, 2011 at 2:38 am
ms-help://MS.SQLCC.v10/MS.SQLSVR.v10.en/s10de_4deptrbl/html/c75d0d4b-4008-4e71-9a9d-cee2a566bd3b.htm
The pages in an encrypted database are encrypted before they are written to disk and decrypted when read into memory
July 5, 2011 at 1:46 am
Viewing 4 posts - 16 through 19 (of 19 total)