I'm distributing a file geodatabase to a number of ArcReader users. At the moment, we're just sending out .zip files of the entire geodatabase.
The updates need to occur frequently, but in general the database doesn't change a lot during updates, so I'm investigating distributing just the differences. The most straightforward way of doing this seems to be using patching software like RTPatch from Pocket Soft.
Due to the way we create the data, the filename of the file that corresponds to each feature class may change between versions. That is, the address feature class might be named a0000002c.* in one version, and a000001ff.* in another.
Unforturnately, RTPatch operates on a file by file basis, so it sees the change as a delete of one file and an add of a new file. The patch file turns out to be just as large as the original data.
So, I need some way of making the file names the same between versions of the data.
One workaround I've found is to copy each feature class into an empty geodatabase in alphabetical order. It seems that the new file names are the same between versions of the data, but that's just an observation.
So, is there any way to force the feature classes in a file geodatabase to use the same filename?
Is there a better way to go about this?
Thanks
Geoff