I have setup up (finally!) merge replication and I am able to add / remove columns to replicated tables. The problem is I now have to change the fields length in some of my tables. For example from chr(25) to chr(50). Is there a way to do this other than creating a new field (temp field) with the right length (through replication sp_repladdcolumn), then copying the tempfield with the old field, drop the old field (through replication), create the final new field(through replication), copying tempfield 1 into final field, and FINALLY, dropping tempfield (throught replication)? 
Thanks to all.
Thanks to all.