Viewing 5 posts - 16 through 21 (of 21 total)
Microsoft SQL Server 2008 R2 (RTM) - 10.50.1600.1 (X64) Apr 2 2010 15:48:46 Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 6.0...
October 19, 2012 at 2:53 am
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 5 posts - 16 through 21 (of 21 total)