Search Results

1
vote

SQL Server query execution plan shows wrong “actual row count” on an used index and performance is terrible slow

When you're checking execution plans of the stored proc against the copy/paste query, are you using the estimated plans or the actual plans? Make sure to click Query, Include Execution Plan, and t …
3
votes

Performance Tuning SQL - How?

I really like the book "Professional SQL Server 2005 Performance Tuning" to answer this. It's Wiley/Wrox, and no, I'm not an author, heh. But it explains a lot of the things you ask for here, plu …
3
votes

Any SQL Server multiple-recordset stored procedure gotchas?

Here's a few gotchas for multiple-recordset stored procs: They make it more difficult to reuse code. If you're doing several queries, odds are you'd be able to reuse one o …
1
vote

Is there a performance hit by added nonenforced foreign keys to a SQL Server 2008 database?

The answer can be different for different environments (data/logs on same drive, tempdb on same drive, lots of cache vs little, etc) so the best way to find this out is to benchmark. Create two id …
0
votes

SQL Server FTS performance after adding many records

Check the statistics on each table. The two servers may have different sets of statistics, because SQL will automatically generate statistics depending on your settings. If it's created different …
1
vote

Alternatives to MS SQL 2005 FullText Catalog

Check out these alternatives, although I doubt they'll improve performance without isolating them onto separate hardware: …
1
vote

Software Bandwidth/Database Growth Formulas

Disclosure first: I work for Quest Software, a company that makes performance management and capacity planning. …
3
votes

What is a good SQL Server 2008 solution for handling massive writes so that they don’t slow down reads for users of the database?

Hi, Paul. There's two parts to your question. First, why are writes slow? When you say you have large databases, you may want to clarify that with some numbers. Th …
0
votes

How much is the network - determing network overhead in SQL Server

Open SQL Server Management Server on the remote machine. Start a new query. Click Query, Include Client Statistics. Run your stored procedure. In the Client Statistics tab of the results, you'l …