Viewing 15 posts - 1,546 through 1,560 (of 2,897 total)
I think you can configure replication to not replicate the deletes when you purge the old data from the source server. (It's been I while since I used it)
January 25, 2010 at 9:16 am
CirquedeSQLeil (1/22/2010)
it does seem pretty big - better than it was,...
January 24, 2010 at 8:07 pm
GilaMonster (1/24/2010)
Is google down today?
Not again ??!! 😀
January 24, 2010 at 7:20 pm
With DTS, wouldn't you have to delete the previously migrated data & reload ?
I would think replication would be easier since it can push just data changes since the last...
January 24, 2010 at 7:13 pm
Perhaps the tables are small, so although they are fragmented, they are too small to defragment.
January 23, 2010 at 7:43 pm
select datepart(hour, getdate()) -- Get just the hour ... in "military" hours
January 23, 2010 at 2:52 pm
Look into the DATEPART function. That may be what you need.
January 23, 2010 at 10:16 am
I re-ran it without the index, but the log file was still 23 Gig .... seems awfully big compared to my 1 Gig temp table that was loaded.
January 22, 2010 at 7:32 pm
Using backup history assumes you don't delete backup history as some people do. It was pointed out in another thread a little while back that having large history files in...
January 22, 2010 at 6:07 pm
I found some old code I used to get rid of CR_LF in the data.
update MyTable
set cm.csm_description = replace(replace(cm.csm_description, char(13), ''), char(10), '')
where charindex(char(10), cm.csm_description) > 0 ...
January 22, 2010 at 2:13 pm
I was suggesting using the backup information to get growth trends from the past to help in planning for the future. They will not be accurate for point in time...
January 22, 2010 at 2:08 pm
In that case, read up on the 2 upgrade methods, then come back if you have questions. You will probably see mention of the Upgrade advisor. It's a useful tool...
January 22, 2010 at 1:52 pm
murthykalyani (1/22/2010)
homebrew01 (1/22/2010)
I use the backup history data in MSDB to look at database growth over time.
I don't this so this will give you good results. consider the case...
January 22, 2010 at 12:34 pm
jeffmc123452003 (1/22/2010)
January 22, 2010 at 12:29 pm
Viewing 15 posts - 1,546 through 1,560 (of 2,897 total)