Viewing 15 posts - 1,126 through 1,140 (of 7,191 total)
When you run the procedure yourself, it runs as you. When you run it as part of a job, it runs as the SQL Server Agent service account or whatever...
November 6, 2017 at 7:19 am
Maybe after, so that all your index pages are nice and orderly for DBCC CHECKDB to read. Not sure it makes all that much difference, though.
John
November 6, 2017 at 4:19 am
November 3, 2017 at 6:55 am
Jeff Moden - Thursday, November 2, 2017 8:20 AMWe're still testing with only 40 rows though, correct?
Jeff
Yes. I did do a couple...
November 2, 2017 at 8:26 am
Comes out as 0 on two of mine, as well, and easily wins the one where it doesn't. Well done, Chris!
John
November 2, 2017 at 8:13 am
Replace the line that ends "AS COUNT_of_Interface_Caption". You need to make sure you understand it though, and not just use it because someone off the internet gave you it. It'll...
November 2, 2017 at 8:03 am
SUM( CASE
WHEN Out_AverageBps/OutBandwidth*100.0 > 90 AND In_AverageBps/InBandwidth*100.0 > 90 THEN 1
ELSE 0
END
) AS COUNT_of_Interface_Caption
John
November 2, 2017 at 6:41 am
Not enough information to help you here. Some possibilities:
(1) Differences in the data on source and/or destination
(2) Differences in hardware (processors, memory and so on)
(3) Differences...
November 2, 2017 at 6:35 am
November 2, 2017 at 5:24 am
November 2, 2017 at 5:22 am
...
WHERE calltime BETWEEN
CASE
WHEN dept IN (
SELECT dept FROM dept WHERE time_zone = 'est'
) THEN '09:02:00.0000000'
WHEN dept IN (
SELECT dept FROM...
November 2, 2017 at 5:10 am
This isn't what an RDBMS is designed for, so performance won't be great. But you can try this (feel free to correct any syntax errors that may have slipped in):
November 2, 2017 at 5:00 am
Thanks for the test harness, Jason. My pride was dented when I saw I finished last! I tried it out on three of my own servers and my results were...
November 2, 2017 at 4:31 am
November 2, 2017 at 3:37 am
November 2, 2017 at 3:28 am
Viewing 15 posts - 1,126 through 1,140 (of 7,191 total)