Yogesh Jindal
Yogesh Jindal

Reputation: 592

migrate database from Sybase to MySQL

I have been trying to migrate a database from Sybase to MySQL.

This is my approach:

  1. Generate pojo classes from my Sybase database using hibernate in eclipse
  2. Use these pojo classes to generate the schema in MySQL database
  3. Then somehow migrate the data from Sybase to MySQL

I guess this approach should work??? Please let me know if there is any better or easier approach.

The thing is I am not even able to get the first step done.

  1. I added hibernate plugin in eclipse from this link: [http://download.jboss.org/jbosstools/updates/stable/][1]
  2. I added Sybase jar file to my project classpath
  3. Then I added hibernate console configuration file
  4. Then I added hibernate configuration file
  5. Then I added hibernate code generation configuration

When I try to run the code generation configuration file, I am getting java.lang.NullPointerException and I have no idea how to fix it.

I searched a lot of forums, tried to google it, but I am not able to find any solution. Can anybody tell me what mistake I am making here or point to some hibernate tutorial for eclipse??

Upvotes: 0

Views: 2669

Answers (1)

chris
chris

Reputation: 9993

one method would be to run a sql export on the database, change the schema as necessary, and then import the data into mysql.

if that's not acceptable, where are you getting the NPE?

edit: alternatively, try this page

Upvotes: 1

Related Questions