Forum Replies Created

Viewing 15 posts - 40,426 through 40,440 (of 49,571 total)

  • RE: Index Fragmentation/Identity Property

    Just bear in mind that by setting a fill factor to 75%, your table is now taking a fair bit more pages. This means more space on disk, more space...

  • RE: Can I make this any faster

    tfifield (3/11/2009)


    P.S. Be wary of the NOLOCK. I actually had a report that would periodically return 2 rows instead of 1 for an item in a high transaction...

  • RE: prevent clients to retrieve information_schema and sys metadata

    SQL 2000 or SQL 2005?

    This is the 2005 forum, but you mentioned SQL 2000. Which is it?

  • RE: calculating index size

    There's also the row header, the null bitmap and the variable column offset to take into account. If the clustered index is not unique, you also have a hidden 4...

  • RE: Different backup/restore sizes

    Dp you perhaps have two or more backups in one file? If you backup to a file with an existing backup and don't use the WITH INIT option, the new...

  • RE: SQL Performance

    Nolock allows for what's called an allocation order scan, where the storage engine reads the index leaf pages in the order they are in the file, not the logical order...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (3/11/2009)


    GilaMonster (3/11/2009)


    Roy Ernest (3/11/2009)


    I think we have good one here...

    Let us see if he comes back with a positive answer or not.

    Bet you a coffee that either he...

  • RE: SQL Performance

    Gianluca Sartori (3/11/2009)


    If you're sure every user works only on his data, try putting some NOLOCK in the select satements to avoid table and page locking during reads.

    Provided you don't...

  • RE: Are the posted questions getting worse?

    Roy Ernest (3/11/2009)


    I think we have good one here...

    Let us see if he comes back with a positive answer or not.

    Bet you a coffee that either he comes back with...

  • RE: The dumbest database design ever - shoot me

    barcode (3/11/2009)


    Everyone's been telling me that Index Tuning Wizard is the best thing since sliced bread but I've also been having my doubts lately!

    Personally, I don't use the ITW...

  • RE: Can I make this any faster

    My gut feel is that the function is, if not the root of the problem, obscuring the root of the problem.

    Can we see the code for the function? We...

  • RE: DDL auditing in sql server2000

    Profiler or a server-side trace.

  • RE: The dumbest database design ever - shoot me

    barcode (3/11/2009)


    My Question: Will it help if I spent time on the database, clear all existing indexes, then start and create the correct primary key for each column. ...

  • RE: Transaction Log Shrinking

    CrazyDBA (3/11/2009)


    I have investigated through dbcc log info, all log files have most VLF's(about 400) with status 0, only couple has value 2. Its size should come down to about...

  • RE: updatable view

    Giovanni (3/11/2009)


    I confirm the design is related to OO structure that we have to write in c#: mapping a class to the view instead of having a business logic to...

Viewing 15 posts - 40,426 through 40,440 (of 49,571 total)