Viewing 15 posts - 196 through 210 (of 700 total)
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
SAN replication of SQL Server database files is often just a way to spend money and corrupt databases. Way more people will promise a working solution than deliver one. SQL...
October 24, 2017 at 2:37 pm
I've seen that error when a bug with storage device has taken some sort of lock on a segment of data (as small as 32kb in some cases) and won't...
October 11, 2017 at 10:33 pm
August 26, 2017 at 2:29 pm
We do have good backups of the database and Full recovery...
August 18, 2017 at 8:29 pm
If you're installing SQL Server, and not renting an image with it installed and licensed or paying to access a managed instance, then you bring your own licenses.
If...
August 7, 2017 at 7:13 pm
August 7, 2017 at 7:06 pm
Short answer:
To get the results you seek, replace the body of your stored procedure with a single step to update the value in the table and assign...
July 5, 2017 at 10:49 am
Viewing 15 posts - 196 through 210 (of 700 total)