Forum Replies Created

Viewing 15 posts - 3,436 through 3,450 (of 19,560 total)

  • RE: Database backup

    I have frequently seen Commvault to be the source of backups as you describe them.

    You might want to check with the sysadmins to see if anybody has a tool such...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: AS A DBA WHAT I NEED TO CHECK WITH SQL SERVERS MY DAILY,WEEKLY,MONTHLY .

    Steve Jones - SSC Editor (3/5/2014)


    There isn't necessarily a list of daily/monthly/weekly tasks for all environments. The list you have is a fine place to keep track of your systems....

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Byte Me: Bugging Out

    Gary Varga (3/5/2014)


    That's unusual as there often is a charge: maintenance contracts 😉

    +1

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Join Operations – Hash Match

    dwain.c (3/4/2014)


    SQLRNNR (3/4/2014)


    Sorry about that link. It was at the top (of the article) and probably could have been more visible.

    Pardon my aging eyes. The link is there...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Join Operations – Hash Match

    dwain.c (3/4/2014)


    Great article Jason! An enjoyable and informative read.

    One question. In the section where you're describing left-deep/right-deep, is it safe to assume you're saying that the context only...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: I/O requests taking longer than 15 seconds?

    Grant Fritchey (3/4/2014)


    You need to check all the hardware and configurations. If you've never done that, I strongly recommend getting an expert in the door. Hardware configs, especially I/O, can...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    EL Jerry (3/4/2014)


    Revenant (3/4/2014)


    Ed Wagner (3/4/2014)


    crookj (3/4/2014)


    SQLRNNR (3/4/2014)


    microbot

    Bug

    Bacteria

    Virus

    Disease

    cure

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Determine doctype of raw binnary data

    Lowell (3/4/2014)


    in a similar post a couple of years ago, i did a TSQL example that looked at the first x bytes and compared them to known values to find...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Reset memory cache for query tuning?

    Keith Tate (3/4/2014)


    You might also want to account for getting the execution plan from cache too. You can use this to clear the proc cache dbcc freeproccache.

    It is...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Determine doctype of raw binnary data

    Is it a file stored by a client or is he perchance looking at ssis or ssrs binary stored in the database?

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Reset memory cache for query tuning?

    Cost can help you determine if the query has been tuned.

    In addition, you could use statistics time and statistics IO.

    Examining the execution plan can really help to determine if the...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Return a default if query returns 0 rows

    That query would work well.

    I have seldom seen this kind of requirement. When I have, it is something we throw in the presentation layer. A common place for...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Return a default if query returns 0 rows

    Here is a possible option

    USE tempdb;

    GO

    DECLARE @reccount INT = 0

    CREATE TABLE #sometab (someid INT IDENTITY(1,1),someval VARCHAR(500),Category VARCHAR(20))

    INSERT INTO #sometab (someval,Category)

    VALUES (

    ...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: random records

    The Dixie Flatline (3/4/2014)


    Masterful? Do you need to borrow money or something, Jason?

    Well, since you asked...:-D

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Join Operations – Hash Match

    Thanks Troy. Much appreciated.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 3,436 through 3,450 (of 19,560 total)