Forum Replies Created

Viewing 15 posts - 2,821 through 2,835 (of 9,399 total)

  • RE: Today's Random Word!

    Luis Cazares (7/22/2016)


    crookj (7/22/2016)


    Red

    Blue

    Sky

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (7/22/2016)


    jasona.work (7/22/2016)


    Brandie Tarvin (7/22/2016)


    Oh, now this is funny.

    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...

  • RE: Today's Random Word!

    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)


    Tie

    Lose

    Gracious(ly)

    Humility

    Humble

    Modest

    Mouse

    Trap

    Skeet

    Shoot

    Range

  • RE: Are the posted questions getting worse?

    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...

  • RE: Startup Procedure Limits

    It's good to review things like this once in a while. Thanks for a good question.

  • RE: Today's Random Word!

    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)


    Tie

    Lose

    Gracious(ly)

    Humility

    Humble

    Modest

    Mouse

    Trap

    Skeet

  • RE: Query to find backup job information!!

    rk1980factor (7/21/2016)


    i think below query might work but it shows the full history. I just want to see job name and last run date/time and duration

    SELECT h.server, j.name, h.run_date, h.run_time,...

  • RE: Query to find backup job information!!

    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...

  • RE: Same Query but different logical/physical reads

    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...

  • RE: Query to find backup job information!!

    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

    ...

  • RE: Query to find backup job information!!

    rk1980factor (7/21/2016)


    So i have several queries which give me the list of job information for each database names.

    I do not want to see db name column

    I am looking for query...

  • RE: Today's Random Word!

    Revenant (7/21/2016)


    djj (7/18/2016)


    whereisSQL? (7/18/2016)


    Tie

    Lose

    Gracious(ly)

    Humility

  • RE: Analyzing a log table with T-SQL

    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...

  • RE: Analyzing a log table with T-SQL

    Eirikur Eiriksson (7/21/2016)


    Good stuff! Here is a quick example which should get you passed this hurdle

    😎

    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)...

  • RE: Computer Math

    Nice question with a very good explanation.

Viewing 15 posts - 2,821 through 2,835 (of 9,399 total)