Viewing 15 posts - 2,821 through 2,835 (of 9,399 total)
Luis Cazares (7/22/2016)
crookj (7/22/2016)
RedBlue
Sky
July 22, 2016 at 8:34 am
Brandie Tarvin (7/22/2016)
jasona.work (7/22/2016)
Brandie Tarvin (7/22/2016)
My SO's ex-boss still stays in contact with him. I've met her a few times.
Today she emails the SO. Apparently UX...
July 22, 2016 at 8:33 am
djj (7/22/2016)
Ed Wagner (7/21/2016)
djj (7/21/2016)
whereisSQL? (7/21/2016)
crookj (7/21/2016)
HappyGeek (7/21/2016)
Ed Wagner (7/21/2016)
Revenant (7/21/2016)
djj (7/18/2016)
whereisSQL? (7/18/2016)
TieLose
Gracious(ly)
Humility
Humble
Modest
Mouse
Trap
Skeet
Shoot
Range
July 22, 2016 at 6:32 am
Michael L John (7/21/2016)
Jeff Moden (7/21/2016)
BrainDonor (7/21/2016)
Does anybody know who the "Hotshot SQL Guru" is?https://tmblr.co/Z14uHt29WaOS7
https://tmblr.co/Z14uHt29Ww0kS
https://tmblr.co/Z14uHt29ZP3zF
Somebody wasn't impressed.
Probably a group effort by the folks at Brent Ozar Unlimited, since it's posted...
July 22, 2016 at 5:49 am
It's good to review things like this once in a while. Thanks for a good question.
July 22, 2016 at 5:24 am
djj (7/21/2016)
whereisSQL? (7/21/2016)
crookj (7/21/2016)
HappyGeek (7/21/2016)
Ed Wagner (7/21/2016)
Revenant (7/21/2016)
djj (7/18/2016)
whereisSQL? (7/18/2016)
TieLose
Gracious(ly)
Humility
Humble
Modest
Mouse
Trap
Skeet
July 21, 2016 at 1:25 pm
rk1980factor (7/21/2016)
SELECT h.server, j.name, h.run_date, h.run_time,...
July 21, 2016 at 12:17 pm
rk1980factor (7/21/2016)
so i know why it came as blank result becasue it ask me to enter job name etc.
Yes, you have to replace the job name "your job name" with...
July 21, 2016 at 12:13 pm
You didn't drop a nonclustered index between query 2 and query 3, did you?
Are they run on the same server against the same table and database?
I'm asking because those are...
July 21, 2016 at 12:10 pm
So this is basically a query of job history. Something along these lines should get you started.
SELECT h.server, j.name, h.run_date, h.run_time, h.run_duration
FROM msdb.dbo.sysjobs j
...
July 21, 2016 at 12:05 pm
rk1980factor (7/21/2016)
I do not want to see db name column
I am looking for query...
July 21, 2016 at 11:48 am
Revenant (7/21/2016)
djj (7/18/2016)
whereisSQL? (7/18/2016)
TieLose
Gracious(ly)
Humility
July 21, 2016 at 9:09 am
Eirikur Eiriksson (7/21/2016)
Ed Wagner (7/21/2016)
Heh - And you even did it without a LEAD() for SQL 2008. Nice job, Eirikur.
Done this or similar to this since 4.2, haven't forgotten...
July 21, 2016 at 8:59 am
Eirikur Eiriksson (7/21/2016)
😎
USE TEEST;
GO
SET NOCOUNT ON;
--
IF OBJECT_ID(N'dbo.request_log') IS NOT NULL DROP TABLE dbo.request_log;
CREATE TABLE dbo.request_log(
[id] [int] IDENTITY(1,1)...
July 21, 2016 at 8:19 am
Viewing 15 posts - 2,821 through 2,835 (of 9,399 total)