Forum Replies Created

Viewing 15 posts - 45,976 through 45,990 (of 49,571 total)

  • RE: Using trace captures

    If you're using 2005, you can retrieve the xml plans from the plan cache. Use the sys.dm_exec_query_stats and the sys.dm_exec_query_plans DMVs. Or you can get profiler to capture the plans...

  • RE: An MVP From Way Down South

    Phil Factor (7/3/2008)


    Gail,

    I'm so pleased you got the recognition. I'm a great fan of your forum entries. I was trying to find my favourite one of all, in which you...

  • RE: PASS

    Grant Fritchey (7/3/2008)


    I had to go and look QFT up. :ermm:

    Sorry.

    For anyone else reading. QFT = "Quote For Truth"

  • RE: PASS

    Grant Fritchey (7/3/2008)


    The absolute most important part of the Summit is getting together with your peers from across the country. Building a network of individuals that you can help and...

  • RE: An MVP From Way Down South

    rbarryyoung (7/3/2008)


    Woo-Hoo! Way to go Gail! :w00t:

    <grin> :w00t: 😀

    Despite the huge number of questions that she responds to, I don't think that I have ever seen her give...

  • RE: An MVP From Way Down South

    Thanks all. It's kinda unexpected.

    inus.dupreez (7/3/2008)


    Well done – you really deserve this… Hope to still work with you for some time as time is all I need to gain...

  • RE: Backup Chains

    Kyle Neier (7/3/2008)


    Clearly, Gail and Jeffrey are correct and I'm the one that should be apologizing.

    No worries. We've all done similar or worse.

    I appropriated your test code to show...

  • RE: Backup Chains

    Jeffrey Irish (7/3/2008)


    I had this all sorted out in my head before reading the whole chain thing in the article. I understand the concept of chaining, but it was the...

  • RE: Backup Chains

    Jeffrey Irish (7/3/2008)


    In theory you could recover to a point in time by restoring Sunday nights full backup and then running all the Transaction Logs through Thursday morning then, regardless...

  • RE: Backup Chains

    Jeffrey Irish (7/3/2008)


    I thought that the chain continued regardless of whether you took a Full backup in the middle of the day or not.

    You are correct, it does. Only a...

  • RE: Backup Chains

    Steve Hindle (7/3/2008)


    does this break the chain from the original backup and tran log backups?

    No. Tran log backups chain from another. Full backups do not truncate the transaction log, only...

  • RE: sp_executesql quirk/question

    Ok. There's no real gain from passing the db name into the sp_executesql, as it can't be used directly as a variable (as you've seen) This simplifies things a bit

    set...

  • RE: An MVP From Way Down South

    Thanks guys.

    This site and everyone here is what made it possible.

    Grant Fritchey (7/3/2008)


    Holy cow, all the cool kids seem to be hanging out here now.

    Careful, it seems to...

  • RE: doubts in Indexing

    mahesh.kumar (7/3/2008)


    If i create non-unique, non-clustered index and filter through registrationo wil it become faster.

    Create the index on the registrationno column. It should be useful, depends on the queries...

  • RE: doubts in Indexing

    select * from gpsdata_history1_April

    That's going to table scan. It has to. You've asked for all the columns and all the rows, no filter. The only way that query can run...

Viewing 15 posts - 45,976 through 45,990 (of 49,571 total)