Viewing 15 posts - 361 through 375 (of 599 total)
Sounds to me like what you need is a nightly job to handle this. Run a DTS package to move over the new records / update changed records and then...
July 27, 2006 at 8:46 am
<cynic alert>
I've got relatives that work for the USPS. If past history is any indication, they're using these things to track employees and pressure them to artificial levels of "productivity".
</cynic...
July 27, 2006 at 8:42 am
No, that's not what I was talking about.
In my case, I had a lookup going to a OLE DB Destination. I wanted to change that to go first to a...
July 26, 2006 at 7:55 am
What are the results of this part of your query on each server?
select evox_id from vehicle_tmp v where v.vehicle_nmb = nimages.vehicle_nmb
July 25, 2006 at 4:41 pm
Table design discussions set aside, this should get you waht you want:
select
s1
.Location2,
s1
.Location1,
July 24, 2006 at 2:19 pm
Found it. Typo on the main books page has SQL Server 2000 listed twice. Second one is 2005 books.
July 24, 2006 at 1:09 pm
Thanks. I don't see anything for 2005 up yet.
July 24, 2006 at 12:42 pm
The last shop I worked at had the same perspective - they were doing some testing of 2005 but didn't want to convert yet. Their biggest hesitation was the DTS...
July 20, 2006 at 6:14 pm
Have you run a DBCC SHOWCONTIG to verify this?
July 20, 2006 at 5:10 pm
I just thought of something...
A newly restored DB should have no fragmentation (or very minor fragmentation). You should take a look at that as well.
July 20, 2006 at 4:29 pm
I don't know. It might not. Can't find anything that says one way or the other. That would just be my first line of investigation.
You might also want to look...
July 20, 2006 at 4:23 pm
What kind of information are you looking for?
Coincidentally, Steve Jones posted an article today that discusses using Profiler (in a different context but it should help you out). You can...
July 20, 2006 at 3:17 pm
Profiler should be your first line if investigation, then.
You could also potentially put a trigger on the table to capture data, but I'd start with Profiler.
July 20, 2006 at 2:33 pm
Doubtful. From BOL:
"
Columns that already have statistics are not touched; for example, the first column of an index or a column with explicitly created statistics. A CREATE STATISTICS statement is...
July 20, 2006 at 2:30 pm
stats would be my fist guess. Try this:
STATS_DATE ( table_id , index_id )
July 20, 2006 at 2:28 pm
Viewing 15 posts - 361 through 375 (of 599 total)