Viewing 15 posts - 25,246 through 25,260 (of 39,804 total)
Clustering addresses specific requirements. It works well for some people, and one of the reasons it works well is the restrictions on hardware and setup.
It mirrors an instance. Database Mirroring...
February 10, 2009 at 9:01 am
PIVOT is a unique solution. Thanks for that.
However, is there a reason this shouldn't be done on a client? Would seem that as this scales, you're using server resources for...
February 10, 2009 at 8:49 am
Scale Out is hard, and it's mostly architectural.
You want to spend a few minutes on it early, thinking about where you could separate out pieces of data to another server...
February 10, 2009 at 8:43 am
You really should consider indexing the heaps. A clustered index is how SQL Server is optimized to work, so create one on each table. Is there a reason not to...
February 9, 2009 at 10:35 pm
What is the maximum memory setting? You might increase that, and then look at the ETL queries and see if they can be indexed better. Check the missing index DMV,...
February 9, 2009 at 10:34 pm
Do you mean that you want the same number of rows in A as in B for each ID?
An outer join will help you figure out which rows are not...
February 9, 2009 at 10:33 pm
Please post in the correct forum. Moved to SSIS.
The 1252 should be the length of data selected.
You need to look through your data. It's possible that you have some rows...
February 9, 2009 at 10:29 pm
You need some way to determine what's changed.
I might actually write triggers on the first copy that moves inserts and updates to a second database. Then the deletes won't affect...
February 9, 2009 at 10:27 pm
You want to pivot the data. Search for that.
February 9, 2009 at 10:25 pm
Please don't cross post.
You have to write this again.
February 9, 2009 at 10:24 pm
You have table valued parameters in 2008, not 2005.
February 9, 2009 at 10:23 pm
The classic answer is "it depends".
I'm sure you see queries that consume more CPU and eat up more resources. If all users run those, the server can be overloaded, but...
February 9, 2009 at 10:22 pm
Viewing 15 posts - 25,246 through 25,260 (of 39,804 total)