Transfer data between MySQL and Oracle

fir3lion

New member
Joined
Jul 23, 2008
Messages
3
Programming Experience
Beginner
Isn't possible to transfer data from MySQL to Oracle or from Oracle back to MySQL using VB.NET code? If yes, can tell me the way or share with me the coding?

Thank you very much.
 
It is.. MySQL to Oracle - a program to migrate databases from MySQL server to Oracle have already done it. You can evaluate whether their product will work (it's shareware) too..

As for doing it in VB.NET.. that's a very long discussion that I don't really have time to answer fully.. Suffice to say you'll need to write a lot of database access code.. Are you up-to-speed with everything necessary?
 
Actually I try to do a program that can transfer data from MySQL database to Oracle datatabase or vice versa using VB.NET. But, I don't know how to do so :eek:
So, I post a topic and hope can some idea from expert.
Anyway, Thanks for the info:)
 
Thing is, it seems like youre writing a quick post and sitting back expecting the answers to come rolling in to solve your problem. To put some perspective on it, if I charged you for the massive amounts of advice required to teach you everything you'd need to know, you'd have been significantly better off buying that inexpensive utility from the given link..

While I don't mean to discourage you, the question you have asked is not one you would have asked if you knew how databases work and how to access them in vb.net ergo, my assumption is that you dont know these thigns and have a lot of learning to do. If you really want to start on that path, then take a read of the DW2 link in my signature, section on Creating a Simple Data App.. Get it working with oracle, then embark on a big exercise to convert the generated code so it is suitable for use with MySQL, then you will have a solution that reads one and writes the other. A dataset would be the client side intermediary.

This is no small undertaking, and as a guy who knows how to do the entire thing (because I've done it; if you want info on accessing MySQL using dataset wizard generated code, speak to forum member dazlerd or look at the lengthy posts between him and myself), I can honestly tell you that I would rather buy that tool than lose the hours of my life. If your goal is to learn, bite off a smaller lump that you can chew. If your goal is some end result, buy the tool.
 
Back
Top