Viewing 15 posts - 1,576 through 1,590 (of 8,731 total)
February 14, 2017 at 8:52 am
Timeouts are defined by the connection. You won't find them on the DB server, you need to capture them in the App server which is the one getting the timeouts.
February 14, 2017 at 6:25 am
Yet another option.
WITH OnlyTs AS(
SELECT Date1, LEAD(Date1, 1, '9999') OVER(ORDER BY Date1) NextDate
FROM #SomeTab
WHERE Stat = 'T'
)
--SELECT *
February 13, 2017 at 9:27 am
Is a 200GB storage or less common for productive db servers? I know that I have a lot more in my laptops which obviously use cheaper storage, but it doesn't...
February 10, 2017 at 12:37 pm
Something baffles me. You're using 70GB of data between data and indexes.
Why is it so important to recover 6GB when the logic indicates that you'll use it again?...
February 10, 2017 at 12:27 pm
February 10, 2017 at 12:07 pm
Remember that you also get points from liked posts. It seems that someone/something is liking random posts according to what I saw on my profile some days ago. With the...
February 10, 2017 at 7:07 am
February 9, 2017 at 8:15 am
This is an untested version that might help. It only works if you're repeating the exact same CASE clause.
select Salutation,
case when len(FirstName)= 0 then...
February 9, 2017 at 8:07 am
February 8, 2017 at 3:27 pm
I want to write a recursive statement to...
February 8, 2017 at 1:32 pm
February 8, 2017 at 9:10 am
Ed Wagner - Wednesday, February 8, 2017 6:09 AMGrapes
Wine
February 8, 2017 at 6:26 am
Viewing 15 posts - 1,576 through 1,590 (of 8,731 total)