Hi,
I am trying to create a process that will take data source that has been output from a proprietary ISAM database to import into a SQL database. This particular ISAM system cannot be accessed via OleDB or ODBC. The thing is I want the process to be able to create the required tables based on data structure information that has been somehow encoded into the data source.
Currently the solution I am going with is to spit out a CSV file that has a header with table and data format information followed by rows of actual data that gets parsed by a SQL script however I am sure that Microsoft must have some kind of preferred solution to this kind of problem but I have not been able to find it. I have looked at the the tools that are available when creating a SQL Server DTS package as well as what seems to be available using the new Integration Services but nothing seems to be any better than the solution I just mentioned.
Anyone have any ideas, I am willing to bet there is a much better way of doing this.

Looking for a good Data migration solution
CPedersen
By better, what exactly do you mean Specifically, what is wrong with exporting to a file, and then importing from said file Are you looking for a way to directly access the ISAM source via a custom provider With the information provided, I would say that your solution is simple and effective. That's usually the best choice!
If you could specify what exactly you would like to avoid in the current solution we discuss this further.
The WB