Forum Replies Created

Viewing 15 posts - 18,691 through 18,705 (of 19,560 total)

  • RE: Baffling performance issue

    Robert Frasca (12/17/2009)


    select *

    FROM PM.vw_LastSelfPayPaymentActivity --where account_id = 107246

    ...

    The query plan for the slow one says that it is performing a clustered index seek where the cost is 100%. ...

    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: Insert using a staging table

    Thanks for posting back and updating the forum.

    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 change the standby server to online when I am running LogShipping

    This might get you headed in the right direction:

    http://deepakrangarajan.blogspot.com/2007/06/role-change-in-sl-2005-log-shipping.html

    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: Big SQL Tables and Growing

    novice_coder (12/17/2009)


    GilaMonster (12/17/2009)


    novice_coder (12/17/2009)


    We will probably have about 3-5 million records by the end of next year. I guess then I will have to think about partioning.

    That's not a...

    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: Help in writing sql

    Or this would work too:

    ;WITH uppity (id, lft, rght, idx)

    AS

    (

    SELECT t.col_01

    ...

    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: Help in writing sql

    The second set of insert statements for your FROM_UPD table do not match your table definition.

    Could you clarify which set of statements and the requirements?

    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: Compare documents in folder to items in a table

    The method Emily is describing has worked for me in the past.

    Using xp_cmdshell, run a dir of the directory. Output the results of that directly to a table.

    Once in...

    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!

    Magi

    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: backup restoration error

    What are the options you selected for the backup? Did you specify the with move option as the error text indicates?

    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 send password protected attachement file throgh SQL 2005

    As a separate step you could execute xp_cmdshell if this must be done via SQL Server. However, you could do this using an OO language rather than TSQL.

    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?

    Paul White (12/16/2009)


    Jeff Moden (12/16/2009)


    Hmmm... hair color is just about right. Need to add a "No RBAR" tatoo, though. 😛

    It's the no-RBEAR 😀

    ROFLMAO

    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?

    I'm sure that could be arranged (tattoo).

    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: Testing after applying SP3

    Do you have an internal QA department?

    Previous test cases for the application?

    Are you able to go through the application given certain scenarios and receive expected results?

    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: Update text column

    Most excellent suggestion Jeff. The update will need to happen at some point anyway with Text going away in a future release.

    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: tlog grows huge during index maintenance...

    More options include altering the job so only Indexes that meet certain criteria are re-orged or re-indexed (frag % and number of pages are common delimiters). Make those criteria...

    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 - 18,691 through 18,705 (of 19,560 total)