Forum Replies Created

Viewing 15 posts - 38,971 through 38,985 (of 49,571 total)

  • RE: Plan Optomizer choseing the wrong index

    Lynn Pettis (5/22/2009)


    You may also want to post the plans here, but I'm not sure how to have you do that with SQL Server 2000.

    Add the following line above the...

  • RE: Count

    As I already said, SQL will not automatically release memory. Don't worry about the memory. You have plenty (16GB), SQL's using 10 or so, that's quite normal and not a...

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (5/22/2009)


    GilaMonster (5/21/2009)


    Oh yay. 🙁

    Another email accusing me of personal attacks and damaging someone's public image by 'misleading' people about his statements.

    Sometimes I wonder why I bother.....

    You...

  • RE: traceflags

    dallas13 (5/21/2009)


    dbcc traceon(1204,3605,-1)

    dbcc traceon(1205,-1)

    dbcc traceon(3604,-1)

    All of above...

    You don't need all of those. If you're looking for deadlocks, the only one that you need is 1204.

    1205 adds a lot, lot more...

  • RE: UPDLock

    Why are you applying an update lock on the count? An update lock is usually used to indicate that the data selected will shortly be updated.

    What are you trying to...

  • RE: Help with defining indexes on views

    With that form of query, indexes are not going to help much. That particular query form performs badly, pretty much no matter what.

    http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/

  • RE: Scheduling DBCC Checkdb on SQL 2005 standard

    As far as I know, the hidden snapshots that CheckDB uses work on every version of SQL right down to express.

    Are there any errors in the error log?

    If you run...

  • RE: Do You Have a Problem?

    dlozi (5/22/2009)


    In my case I'm from Africa I started using SQL server last year and i have learned a lot but,I still need the training to be come a good...

  • RE: Query Timeout

    TheSQLGuru (5/21/2009)


    I do not often waste my time coming up with such permutations as you did (or solving them) that are not relevant to the post. I...

  • RE: Oracle create table syntax

    Not using Toad. As I mentioned already in the thread, I was using the web interface that Oracle Express has.

  • RE: A single table corrupted?

    You don't need to find and kill deadlocks. SQL has a built-in deadlock detector which will automatically find deadlocks and kill one of the processes involved.

    http://sqlinthewild.co.za/index.php/2008/07/08/what-is-a-deadlock/

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (5/22/2009)


    I meant the one who calls himself the Guru, signs with MVP, but doesn't disclose his name, which I find a little bit odd.

    He is an...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (5/21/2009)


    Paul White (5/21/2009)


    Would be fascinating to know who 'flamed' Gail. Personally I would love to take a look at the discussion that prompted it and take the...

  • RE: Help! Nulls killing a join?

    If you still need help (not quite sure if the problem's fixed or not), please post table definitions, sample data and expected results. See the article I referenced earlier for...

  • RE: Count

    SQL will never release memory. Once it's allocated it will only release if the OS signals that the entire system is short of memory.

Viewing 15 posts - 38,971 through 38,985 (of 49,571 total)