Forum Replies Created

Viewing 15 posts - 13,156 through 13,170 (of 22,215 total)

  • RE: Key Lock

    phancey (2/22/2011)


    you see I thought that I would be retrieving most of the time using where recordstatus_id = 0, and that because this was a clustered index then all the...

  • RE: Upgrade SQL 2008 to SQL 2008 R2

    Fox87 (2/22/2011)


    Hi There,

    The SQL Upgrade Advisor doesn't work if I run it on my SQL 2008 instance.

    It give the following error:

    SQL Server version: 10.00.4000 is not supported by this...

  • RE: How to tune text queries

    srikant maurya (2/21/2011)


    You can rewrite the query but execution plan are same for both t-sql (index scan)

    select * from contact where patindex('%a',first_name)>0

    That approach will lead to scans instead of...

  • RE: Very large index in database and less memory on disk left

    Is any single index bigger than 7gb? I don't think you'll need to worry about uncommitted transactions exceeding that value. But, if you have to, break down the process, do...

  • RE: Key Lock

    Ah, the leading edge of your clustered index, at least in the sample, is always zero. That's going to make for some pretty horrific statistics, probably leading to scans of...

  • RE: Paramaterized query

    A similar query plan is not the same thing as the same query plan.

    Regardless, I suspect you're hitting one of the exceptions, it's just not clear which one. You're seeing...

  • RE: Paramaterized query

    Forced Parameterization has a huge number of possible exceptions. If this code is using prepared statements, then that is one of the exceptions. Here's the list.

  • RE: Key Lock

    I'm sure I'm missing something, but what specifically is the problem? What's going wrong?

  • RE: Very large index in database and less memory on disk left

    You're cross over a few items there. The recovery model of the database and index rebuilds shouldn't be cross-concerns. Space on the drive is because you'll need room for the...

  • RE: T-Sql DBA commonly use

    It really depends on your job and your environment. Like Gus already said, index management and backups are the most common ones, but different situations are going to require you...

  • RE: tasks for dba in developer enviroments

    It really depends on how you work with the developors. Personally, I try to work on the database the same way they work on code, putting it into source control,...

  • RE: Are the posted questions getting worse?

    GSquared (2/21/2011)


    Grant Fritchey (2/21/2011)


    And this post makes 10,000 points. On to getting 10,000 posts.

    Figured I'd break the threshold on The Thread.

    Grats!

    (For some reason, I keep thinking you were ahead of...

  • RE: help to find 90% records.

    Whatever acts as the aggregate to get you the top 90% is also the thing that you can order by to get the first 50 using TOP 50 with the...

  • RE: Are the posted questions getting worse?

    And this post makes 10,000 points. On to getting 10,000 posts.

    Figured I'd break the threshold on The Thread.

  • RE: Historical Data Reporting

    It really depends on what the needs of the project are. I tend to shy away from denormalization as a plan. I usually plan on normalizing with a standard design,...

Viewing 15 posts - 13,156 through 13,170 (of 22,215 total)