Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 2,640 total)

  • RE: tempdb extent locks running Views

    in general terms poorly optimised sql, and views are regular culprits I've found ( not beacuse they are views but often views are written to disguise or simplyfy the underlying...

  • RE: Moving database files to other drive

    If you're moving several databases make sure you attach in the correct order to maintain the database id's.

     

  • RE: convert INT to BIGINT

    Option 3 is your best bet, especially as you can batch the data transfers to avoid overflow of your transaction log.

    When I move data this way I usually put the...

  • RE: Thoughts on ways to improve performance of heavily used server

    You need to analyse database usage, I suggest you collect statistics for your server so that you can understand how it is performing. Idera Diagnostic Manager is good at doing...

  • RE: Stored Procedure Tuning...

    You should be able to return the actual query plan for the proc when it runs - but if you still have problems you can capture the plan in profiler.

    Once...

  • RE: Slow database performance on a higher spec server

    A fundamental part of fault finding and performance tuning is to ensure you test on like for like systems. Might I suggest an investment in a tool such as Redgate's...

  • RE: Replacing Cursors and While Loops

    It's just worth pointing out that by default how a cursor and while loop work are different from a transaction view point. A while will execute as a complete transaction...

  • RE: SQL profiler trace

    42 ?

  • RE: Disk Defrag on RAID 5

    It's really a case of housekeeping. ntfs fragmentation is best avoided regardless of raid or memory. If you don't keep on top of fragmentation ( ntfs ) there's always the...

  • RE: Primary Key and Index on same column

    I have to add this, as way of an apology to Jeff, having disagreed with him I have almost as described in sets of tables used in partitioned views -...

  • RE: Stored Procedure vs Triggers

    If I remember correctly doesn't an update or insert trigger force all data updates to be deferred updates rather than in place updates, thus contributing to page splits and fragmentation?

    I've...

  • RE: The Challenge: Litespeed v TDPSQL

    Having used Litespeed extensively , on a SAN and DAS, I will happily state that Litespeed did as  claimed and ran very much faster than native. The restores were also...

  • RE: Building (fast) Stats in a table with 3+ Million Rows?

    "and therefore crashes our main server"

    Have you tried extracting the query plans for your queries to see where the performance bottleneck is? I assume your application probably has a time...
  • RE: Disk Configuration Dilemma

    Well I used raid 10 for tran logs back in the days of sql server 6.0. Usually you just select, say 4 disks, in the hardware set up and click...

  • RE: Clustered Index Strategies

    Yup - it just depends - just attended one of Kimberley's indexing events - I don't agree necesscarily with her choices - apps are rarely ideal and often you have...

Viewing 15 posts - 2,206 through 2,220 (of 2,640 total)