Forum Replies Created

Viewing 15 posts - 12,601 through 12,615 (of 19,560 total)

  • RE: Are the posted questions getting worse?

    Any that are interested, my UG is having another livemeeting on Sep 9, 2010 @ 6PM PST.

    https://www.livemeeting.com/cc/UserGroups/join?id=C7N873&role=attend

    Meeting ID is C7N873 (just in case you need it).

    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: Are the posted questions getting worse?

    Steve Jones - Editor (9/3/2010)


    I'd implement the FK, document my issues, and pull it back out when he complained about performance.

    With a big phat I told you so

    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: Page/Row Compression

    Interesting question with a bit of an 'It Depends' set of Answers.

    Log Shipping would be affected if the database were set to log-ship first and then compression were enabled after...

    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: Are the posted questions getting worse?

    Lynn Pettis (9/3/2010)


    Gianluca Sartori (9/3/2010)


    Yesterday I had a wild argument with my boss, claiming that a column named "description" could be perfectly suitable for a foreign key.

    I had to leave...

    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: User DB Transaction Log fills up When Running Online Index Rebuild With SORT_IN_TEMPDB = ON

    You are attempting to run this against just one index or is a bunch of indexes (when you run it manually in SSMS)?

    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: Comma Seperated Values

    WayneS (9/2/2010)


    Click here for the latest Delimited Split Function.

    Then, it's just:

    SELECT ITEM

    FROM dbo.DelimitedSplit8k(@val, ',')

    Nice resource, Wayne.

    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: Hidden or Unknown Job Perks

    SQLBill (9/2/2010)


    Great manager.

    Great director.

    Work from home three days a week.

    25 paid days of time off.

    Work laptop to use when working from home.

    On call for one week once every two months.

    Guaranteed...

    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: Are the posted questions getting worse?

    Alvin Ramard (9/2/2010)


    Steve Jones - Editor (9/2/2010)


    Alvin Ramard (9/2/2010)


    BTW, we need one more emoticon. We need one for banging head against something.

    Isn't that WayneS's avatar?

    I wouldn't call it an...

    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: Multiple execution plans for a stored procedure

    Does the proc contain any sort of conditions to execute one query v. another query depending on the conditions?

    This can cause multiple execution plans. For instace, MS Crm does...

    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: How to get a table's full name including schema? Thanks.

    anand_vanam (9/2/2010)


    SELECT s.name + '.' + o.name

    FROM sys.objects o

    JOIN sys.schemas s

    ON s.schema_id = o.schema_id

    WHERE o.type = 'U'

    why we need "AND...

    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: Are the posted questions getting worse?

    Alvin Ramard (9/2/2010)


    CirquedeSQLeil (9/2/2010)


    Alvin Ramard (9/2/2010)


    Steve Jones - Editor (9/2/2010)


    I'd send them a business card. $100/hr, be happy to work over RDP and install SQL for you.

    Steve, you left out...

    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: Upgradation frm SQL 2k to 2k5

    We're glad it is working for you now.

    Congrats.

    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: Are the posted questions getting worse?

    Alvin Ramard (9/2/2010)


    CirquedeSQLeil (9/2/2010)


    Alvin Ramard (9/2/2010)


    Steve Jones - Editor (9/2/2010)


    I'd send them a business card. $100/hr, be happy to work over RDP and install SQL for you.

    Steve, you left out...

    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: How to get a table's full name including schema? Thanks.

    Slightly modified version of that same query

    SELECT s.name + '.' + o.name

    FROM sys.objects o

    JOIN sys.schemas s

    ON s.schema_id = o.schema_id

    WHERE o.type =...

    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: PASS Summit 2010 - Would it be worth the money?

    I have been once and will be there again this year. I can definitely say that it is well worth the money.

    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 - 12,601 through 12,615 (of 19,560 total)