Forum Replies Created

Viewing 15 posts - 5,266 through 5,280 (of 5,843 total)

  • RE: Memory_Parallelism Performance Problem

    1) How is it you can spend that much money on a server but can't hire a professional to help you tune/configure it? Hunting and pecking on a news...

  • RE: Disk Subsystem

    I am quite frankly astonished that you are asking on this forum for disk advice when you are developing a system that will process over 20K transactions per minute 24/7...

  • RE: Storing files in VLDBs, filegroups and maintenance

    As long as you aren't I/O or CPU bound, moving indexes to their own file group (preferrably on their own set of physical disks/controller) should improve performance - perhaps significantly...

  • RE: Ready Made Code Snippet Tool Box Courtesy of SCOM

    I love having new tools to help me and my clients do our jobs more efficiently, but unfortunately I don't have time to install a big software package and play...

  • RE: Log Shipping Solution for 500+ databases

    May I recommend that you have scripted files of every object you keep in your databases. Back them up, and also put them into source code control system as...

  • RE: Storing files in VLDBs, filegroups and maintenance

    Personally I see the file system as the best place to store files and the database the best place to store other stuff. I can rattle off numerous benefits...

  • RE: Slow performance of database

    Hire an SAN-experienced sql server expert to give your systems a review. Way too many things can be mis/poorly configured in this setup!!

  • RE: Memory Management problem

    search support.microsoft.com for this

    Error 17803 Insufficient memory available sql server 2000

    and you can find numerous causes for this. See if any match your situation.

    Also, perhaps you can...

  • RE: Procedure Cache Hit Rate is Low - Need Advice

    I do think I can explain the cache miss: select * from table is a trivial plan and these are not cached.

  • RE: Procedure Cache Hit Rate is Low - Need Advice

    +1 to the group that has never heard about capitolization mattering for cache hits for stored procedure calls. ad hoc I did know about. Very surprised about sprocs...

  • RE: High CPU. Many processes have SOS_SCHEDULER_YIELD

    You can also use dbcc inputbuffer() to see executing code associated with a particular spid.

    Are you seeing any blocking?

    Definitely looks like someone or something is running some massive code.

  • RE: Querying an indexed table

    It probably doesn't matter as long as the default setting of Autocreate statistics is adhered to and left ON. Then the optimizer will likely gather statistics and come up...

  • RE: SQL 2005 Memory Problem

    Per Microsoft (sorry, can't find a link) you should not set min and max memory equal. I recommend leaving a GB between them. Something about SQLOS internal memory...

  • RE: Inline Table-Valued Functions

    Memory usage isn't the big problem . . . it is winding up with nested loop query plans accessing huge numbers of records that will kill performance.

  • RE: Querying an indexed table

    Note that it is VERY important which order the columns are placed in the index however. Assuming all 3 columns are referenced in all queries, you should put the...

Viewing 15 posts - 5,266 through 5,280 (of 5,843 total)