wrote:
> mmm, you're right there; automating would be quite difficult and
> probable even take longer than browsing the sets manually... any tool
> you know to do so?
>
> The data are our clients, gotten through legacy-software. Now I'm
> putting the data in an Oracle DB, but it's impossible to get
> information on which coding the program uses. Lots of names and
> addresses have accents in them, which we can't afford to loose.
Do you know for sure that there is more than one character-set encoding in use? And what would you change these to, once you knew what they represented?
Is this something you have to do just once, or is there a continuing need? For a one-time use, manually cycling through your choices may not be that painful.
If this is truly an 'extended ASCII' file, which might be a legacy DOS file, you could try an OEM character set. There are several OEM code pages, but CP 437 is the most common. Just using an OEM font (like Ms Terminal or FoxPrint) will reveal whether this is the case. If it is, then applying the API OemToCharBuff will do the translation into the current code page.
--
Jim