Viewing 15 posts - 1,546 through 1,560 (of 2,900 total)
Generally 2 files are created to improve performance by spreading the data onto multiple disks or arrays. Or it can be done because of space limits on a drive and...
January 26, 2010 at 5:06 am
Please tell me everything:
http://www.sqlservercentral.com/Forums/Topic852819-146-1.aspx
January 25, 2010 at 10:11 am
If the data files are all in the same file group, then no. Data could be spread among several data files.
January 25, 2010 at 9:17 am
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
Viewing 15 posts - 1,546 through 1,560 (of 2,900 total)