Viewing 15 posts - 5,566 through 5,580 (of 5,842 total)
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...
September 26, 2007 at 8:28 am
ApexSQL has VERY slick source code control functionality and allows the use of a number of code storage back ends.
September 26, 2007 at 8:21 am
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...
September 25, 2007 at 1:08 pm
"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...
September 25, 2007 at 7:56 am
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...
September 24, 2007 at 2:39 pm
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...
September 24, 2007 at 10:08 am
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...
September 24, 2007 at 8:28 am
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...
September 24, 2007 at 8:23 am
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...
September 24, 2007 at 8:13 am
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...
September 24, 2007 at 7:51 am
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...
September 24, 2007 at 7:39 am
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...
September 24, 2007 at 7:31 am
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...
September 19, 2007 at 6:25 am
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....
September 17, 2007 at 7:38 am
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...
September 14, 2007 at 11:31 am
Viewing 15 posts - 5,566 through 5,580 (of 5,842 total)