Forum Replies Created

Viewing 15 posts - 14,146 through 14,160 (of 19,562 total)

  • RE: rarely used procedures in db

    A solution that I have implemented is to run a trigger that inserts the data for all running stored procedures into a log table. The trigger was a logon...

  • RE: How to check if a database is being used?????

    Angelindiego (5/7/2010)


    Thank you all for the ideas, I am trying them all!!!!!!!!!!

    You're welcome.

  • RE: Query Tuning~CPU Usage

    GilaMonster (5/7/2010)


    I've added it to my 'list of topics to blog on'. Thanks, the list was getting a little short now that I've finished with in, exists and joins.

    That should...

  • RE: Are the posted questions getting worse?

    Ahh. I saw the thread asking about good Universities but didn't open it up.

    Thanks Gail.

  • RE: Current queries running on Tempdb

    If it is still growing, I am going to re-recommend performing that routine outlined in the article I suggested. There is another query that is causing growth.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (5/7/2010)


    CirquedeSQLeil (5/7/2010)


    GilaMonster (5/7/2010)


    Gianluca Sartori (5/7/2010)


    Lynn Pettis (5/7/2010)


    Our PhD candidate at work.

    Hope I wasn't too rude.

    This guy has the ability to drive me insane (maybe it's his signature???)...

  • RE: Query Tuning~CPU Usage

    Thanks Gail. That explains it quite well.

  • RE: Are the posted questions getting worse?

    Gianluca Sartori (5/7/2010)


    Lynn Pettis (5/7/2010)


    Our PhD candidate at work.

    Hope I wasn't too rude.

    This guy has the ability to drive me insane (maybe it's his signature???) .

    I can see the...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/7/2010)


    Gianluca Sartori (5/7/2010)


    Lynn Pettis (5/7/2010)


    Our PhD candidate at work.

    Hope I wasn't too rude.

    This guy has the ability to drive me insane (maybe it's his signature???) .

    You and me...

  • RE: Query Tuning~CPU Usage

    GilaMonster (5/7/2010)


    CirquedeSQLeil (5/7/2010)


    You can also take a look at sys.dm_exec_query_stats. You will need to know the sql_handle for the query you are running though. You would want to...

  • RE: Are the posted questions getting worse?

    Gianluca Sartori (5/7/2010)


    Lynn Pettis (5/7/2010)


    Our PhD candidate at work.

    Hope I wasn't too rude.

    This guy has the ability to drive me insane (maybe it's his signature???) .

    Nah - not rude.

    I'm...

  • RE: Tempdb GROWS

    Brandie Tarvin (5/7/2010)


    CirquedeSQLeil (5/7/2010)


    It seems that this statement is causing a lot of page allocations due to the delete statement. I would certainly take it back to the vendor...

  • RE: Query Tuning~CPU Usage

    You can also take a look at sys.dm_exec_query_stats. You will need to know the sql_handle for the query you are running though. You would want to look at...

  • RE: Tempdb GROWS

    Run this query and post the results

    SELECT top 5 *

    FROM sys.dm_db_session_space_usage

    ORDER BY (user_objects_alloc_page_count +

    internal_objects_alloc_page_count) DESC

  • RE: Tempdb GROWS

    It seems that this statement is causing a lot of page allocations due to the delete statement. I would certainly take it back to the vendor and ask them...

Viewing 15 posts - 14,146 through 14,160 (of 19,562 total)