Forum Replies Created

Viewing 15 posts - 5,566 through 5,580 (of 5,842 total)

  • RE: SQL Server Benchmark Statistics Needed

    1,231,433 transactions per minute steady state on an almost 2 year old submission to tpc.org. I will venture a guess that that is fast enough for just about any...

  • RE: SQL Server Version Control

    ApexSQL has VERY slick source code control functionality and allows the use of a number of code storage back ends.

  • RE: Forced Parameterisation for tempdb

    If you have widely disparate spread of data you will often wind up with a bad execution plan in cache. Say you have a million rows and all but...

  • RE: Limit Resources to UGLY query

    "idle cpu" job wouldn't work here because it is a long running query. No matter what you defined 'idle' as the query would run long enough to encroach on...

  • RE: Limit Resources to UGLY query

    In 2005 Microsoft took a LOT of the Oracle playbook to heart (that it already hadn't done or done better on), especially from a manageability standpoint (think DMVs).  They are...

  • RE: Forced Parameterisation for tempdb

    Are your auto-parameterizations failing??  There are some perf-mon counters you can check to validate this.  In my experience and training, forced parameterization is useful only in limited scenarios and can...

  • RE: Limit Resources to UGLY query

    In sql server 2005 you have only ONE option for resource control over a query's execution:  the degree of parallelization.  If you have a multi-cpu box this may be sufficient...

  • RE: Good SQL Server 2005 Performance Training Course

    I heartily concur with the Solid Quality comment. 

    You can also search the web for Microsoft learning providers near you.  You want to attend classes 2784 and 2790, which combined...

  • RE: help make query faster please with an index

    1) You only need to create an index once. 

    2) You can do this via a query (create index..) or using the GUI (i.e. sql server management studio)

    3) All subsequent...

  • RE: Changing the cache ratio on a RAID controller in an HP server

    It should be easy to find the answer about whether a rebuild is required in the documentation for the controller. 

    For heavy OLTP systems a 100 write/0 read configuration can...

  • RE: Forced Parameterisation for tempdb

    I have not, although I HAVE used force parameterization on other non-system databases.  Given the typical activities that go on in tempdb it is difficult to construct a scenario where...

  • RE: Query Performance

    It is my understanding that other than the additional security verifications (which aren't too onerous) there would be no difference in the query performance.  The optimizer will still be able...

  • RE: Headache on a data range query

    You left out a very important piece of information here: the average number of rows per idaccount. If it is large then sql server may not use a...

  • RE: Converting a cookie to XML

    Hmm, it would seem that all of the string-based builtin functions called by the user defined function you have are deterministic. You can verify against the list in BOL....

  • RE: Cluster SQL 2005

    igor, the answer to your question is "it depends". How much money do you have to spend on the project? What is your allowable downtime? Do you...

Viewing 15 posts - 5,566 through 5,580 (of 5,842 total)