Viewing 15 posts - 196 through 210 (of 708 total)
August 29, 2018 at 4:17 pm
If your Database Master Key (DMK) is encrypted by the Service Master Key, then you will need to re-encrypt the DMK with the new Service Master Key on the new...
July 12, 2018 at 10:52 pm
The behavior changed in SQL 2016:
https://support.microsoft.com/en-us/help/4010261/sql-server-and-azure-sql-database-improvements-in-handling-some-data-t
If you run the query on a SQL 2017 database set to compatibility level 120 (SQL 2014) or less, it will...
June 13, 2018 at 3:59 pm
I looked at the mask: 111111111100000000001111111111, which I'm guessing is:
00000000001111111111
00000000001111111111
...and they have 10-core processors with hyperthreading turned on, and this mask is to stick to the physical...
June 7, 2018 at 5:35 pm
June 4, 2018 at 5:58 pm
select...June 4, 2018 at 5:47 pm
I have done a lot with Distributed Replay. Some things you should know:
Distributed Replay is 32-bit code from the SQL2005 days, even if you pulled it off the...
May 10, 2018 at 8:18 pm
GETDATE() returns a datetime data type, which lacks time zone information. The date provided from the server is treated as though it came from time zone offset +0:00 (GMT). Time...
March 28, 2018 at 6:21 pm
March 26, 2018 at 10:21 pm
Check your email. The links recently went out 🙂
You're correct about the latch contention caused by heavy create/drop #temp table traffic - specifically, adding the first row to...
March 18, 2018 at 7:03 pm
December 23, 2017 at 12:16 pm
November 20, 2017 at 10:32 pm
I've replayed many 2008 traces (taken with the "T-SQL Replay" template) on 2016, using both Profiler and Distributed Replay.
To which doc are you referring?
November 7, 2017 at 6:00 pm
I'm sure this is an easy answer for many of you but, when setting...
November 7, 2017 at 4:27 pm
select A.name, case when A.id=2 then C.ID else null end as [ID]
from TableOne A
left join TabletTwo B on A.id=B.id
left join TableThree C on A.id=C.id...
October 27, 2017 at 1:59 am
Viewing 15 posts - 196 through 210 (of 708 total)