Viewing 15 posts - 1,246 through 1,260 (of 2,612 total)
I think what you are asking is if you can take a backup of just data that has changed recently?
The answer is sort-of. You can take a differential backup...
June 18, 2008 at 7:47 am
Lots of things go into coming up with the execution plan for a query in SQL Server. Take a look at the execution plans on each server. It...
June 18, 2008 at 7:41 am
I don't think you have captured your requirements all that well in your posting.
From what you have here, my first though would be to use a GUID - then it...
June 18, 2008 at 6:39 am
Yes, the scripting that Management Studio generates does. Basically, it just does a table lock on the table you are moving so all other processes will be blocked during...
June 18, 2008 at 6:03 am
A SQL Destination will certainly not work with a synonym to a linked server. The SQL Destination needs to be a local SQL Server because of the way it...
June 18, 2008 at 5:59 am
You may want to reconsider using FullText for this. A fuzzy lookup in SSIS would probably be more appropriate. It is designed to find "close" matches based on...
June 18, 2008 at 5:52 am
IMAGE data is not stored in the data pages of the table, so moving the clustered index (which is the actual table data) does not move your IMAGE data.
If memory...
June 18, 2008 at 5:44 am
So you need to change the design AND upgrade your server...
Is this a one-time update, something you intend to do regularly in batch, or something you need to really happen...
June 18, 2008 at 5:12 am
If you can, clear your procedure cache. In the procedure, add an OPTIMIZE FOR and specify the variable values you are using when running through Management Studio. The...
June 17, 2008 at 1:28 pm
That is what I meant by don't multi-task your server. You "could" mirror and then use a database snapshot of your mirror so you can see the data on...
June 17, 2008 at 1:22 pm
That would probably do it. As another temporary stop-gap option, you could do the check you are doing now with NOLOCK, but when you find a record that you...
June 17, 2008 at 1:05 pm
I would typically recommend you do not try to multi-task a server and use it for both a DR solution and a reporting solution. They tend to conflict with...
June 17, 2008 at 12:37 pm
The optimizer may decide to do an index scan if it feels it is going to need a high percentage of the records. This may simply be the case,...
June 17, 2008 at 12:29 pm
Without looking at the execution plans, I would have to guess that you get very different plans depending on the parameters you pass in. Since stored procedures cache execution...
June 17, 2008 at 12:09 pm
NOLOCK is a pretty scary thing to use, and you have misused it here. The problem you are having is probably the order being modified is moving from one...
June 17, 2008 at 12:03 pm
Viewing 15 posts - 1,246 through 1,260 (of 2,612 total)