Shockerman
MIS
Does anyone have any ideas on how I would go about setting up a sql program or any other type of program that could take a tab delimited ASCII file and be able to add the information to a table based on mapping constraints. For example, the ASCII file would look like this:<br>
Code1 Code2 Breed DogID Description<br>
B1 C2 Collie 43 brown with spots<br>
<br>
The program would need to understand that a dog from (B1, C2) would belong in my category# 198 so my table would look like this.<br>
<br>
Code Breed DogID Description<br>
198 Collie 43 brown with spots<br>
<br>
Please let me know if you have any thoughts or ideas where I could find information.
Code1 Code2 Breed DogID Description<br>
B1 C2 Collie 43 brown with spots<br>
<br>
The program would need to understand that a dog from (B1, C2) would belong in my category# 198 so my table would look like this.<br>
<br>
Code Breed DogID Description<br>
198 Collie 43 brown with spots<br>
<br>
Please let me know if you have any thoughts or ideas where I could find information.