Forum Replies Created

Viewing 15 posts - 1 through 15 (of 16 total)

  • RE: Filegroups

    I would follow Allen_Cui's advise and look at PerfMon first to determine if you have an I/O bottleneck or contention within the database for I/O resources...

  • RE: Average Latch Wait Time > 1600ms

    latching can come from a variety of things. If you have an I/O bottleneck you could see some page latching. If you have high contention for the same...

  • RE: Help with best approach to large number of records

    perhaps instead of creating one table per web site owner you could create one table per month and let all the owners search the same table.

    Views might help...

  • RE: Record Locking

    You need to create a transaction, around the two statements, with the correct isolation level for your business case. See the SQL Books Online "Isolation Levels"

  • RE: CPU % from SQL

    I don't know of a way to monitor CPU busy from SQL but there is a way to check the state of SQL's processing capacity.

    DBCC SQLPERF (UMSSTATS) will provide some...

  • RE: Output Queue Length

    I've found this counter to be very unreliable myself. I would look at Packets/sec and Bytes/sec and see if those values are out of range for the particular NIC...

  • RE: SP slows down over time.

    You problem is an interesting one.

    How did you verify uncommitted transactions and lack of RAM? What were the values?

    Besides using temp tables what else are the SPs doing? ...

  • RE: New Hardware - Suggestions wanted

    I would go with a mid-range disk subsystem that will allow you to get as many disk drives as possible. Physical disk drives dictate performance not the size of...

  • RE: Database Hammer - will it work on NT?

    Database Hammer is a VB app that will run on NT or W2K

  • RE: Machine Spec

    I think Simon is correct.

    I would turn on the Performance Monitor in NT and look at Processor Utilization, Average Disk Queue length and sec/Transfer. In SQL I would look...

  • RE: SQL Traces

    I'm not sure about Views using TempDB to store data, but I know tables created with the # or ##, Order by operations, large Hash joins and some cursors use...

  • RE: SQL Traces

    I believe the LockTimeout setting is connection based. Could there be connections that set it to something else? The default is -1 so it would have to be...

  • RE: Interpreting Memory Counters

    robhaas is running SQL 7 so /3GB or upgrading SQL are the only options for more memory.

    You'll need SQL 2000 to run 6 or 8 GB.

  • RE: sql 2k Instances Perfmon Counters

    Besides having enough RAM, which I think you have enough info to investigate about (what out for paging if you modify min/max mem settings), I would also monitor disk utliziation....

  • RE: Parallelism Vs No Parallelism

    What type of statement(s) is the SP doing?

Viewing 15 posts - 1 through 15 (of 16 total)