Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
benhutton-mysql2psql
Advanced tools
= MYSQL2PSQL - MySQL to PostgreSQL Migration Tool
Tool for converting mysql database to postgresql. It can create postgresql dump from mysql database or directly load data from mysql to postgresql (at about 100 000 records per minute).
It can translate now most data types and indexes, but if you experience some problems, feel free to contact me, I'll help you.
== Installation Mysql2psql is packaged as a gem. Install as usual (use sudo if required).
$ gem install mysql2psql
After installation, the "mysql2psql" command will be available. When run, it will generate a default configuration file in the current directory if a config file is not already found. The default configuration filename is mysql2psql.yml.
$ mysql2psql
You can use an alternate config file by passing the filename/path as a parameter:
$ mysql2psql ../another/world.yml
== Running Migrations See the configuration file for documentation about settings. Key choices include:
After editing the configuration file and launching tool, you will see something like..
Creating table friendships... Created table friendships Loading friendships... 620000 of 638779 rows loaded. [ETA: 2010/01/21 21:32 (00h:00m:01s)] 638779 rows loaded in 1min 3s Indexing table friendships... Indexed table friendships Table creation 0 min, loading 1 min, indexing 0 min, total 1 min
== Database driver dependencies Mysql2psql uses the 'mysql' and 'pg' gems for database connectivity. Mysql2psql gem installation should automatically install these too.
If you encounter any issues with db connectivity, verify that the 'mysql' and 'pg' gems are installed and working correctly first. The 'mysql' gem in particular may need a hint on where to find the mysql headers and libraries:
$ [sudo] gem install mysql -- --with-mysql-dir=/usr/local/mysql
NB: With Ruby 1.8.x, the gem install will usually complain about "No definition for ..." errors. These are non-fatal and just affect the documentation install. This doesn't happen with Ruby 1.9.2.
== Contributing to Mysql2psql
== Getting the source Mysql2psql was first produced by Max Lapshin max@maxidoors.ru who maintains the master repository at https://github.com/maxlapshin/mysql2postgres
The gem bundling and refactoring for testing was done by Paul Gallagher gallagher.paul@gmail.com and the repository is at https://github.com/tardate/mysql2postgres
Gem packaging is done with Jeweler. Note that on windows this means you must run under mingw or other shell that supports git to do the gem bundling (but you can gem install the built gem in the normal Windows shell).
== Setting up for development
The project includes a Gemfile so with bundler you can install gem dependencies with:
gem install bundler # if not already installed bundle install
Note comments 'Database driver dependencies' regarding issues that you may encounter with the mysql gem.
== Running tests If you fork/clone the project, you will want to run the test suite (and add to it if you are developing new features or fixing bugs).
A suite of tests are provided and are run using rake (rake -T for more info) rake test:units rake test:integration rake test
Rake without parameters (or "rake test") will run both the unit and integration tests.
Unit tests are small standalone tests of the mysql2psql codebase that have no external dependencies (like a database)
Integration tests require suitable mysql and postgres databases to be setup in advance. Running the integration tests will rewrite data and schema for the "mysql2psql_test" databases in mysql and postgres. Don't use this database for anything else!
Setting up mysql on localhost:3306
e.g.
mysqladmin -uroot -p create mysql2psql_test mysql -uroot -p -e "grant all on mysql2psql_test.* to 'mysql2psql'@'localhost';"
mysql -umysql2psql -e "select database(),'yes' as connected" mysql2psql_test
Setting up PostgreSQL on localhost:5432
e.g.
psql postgres -c "create role mysql2psql with login" psql postgres -c "create database mysql2psql_test with owner mysql2psql encoding='UTF8'"
psql mysql2psql_test -U mysql2psql -c "\c"
== Notes, Limitations, Outstanding Issues..
== Contributors Project founded by Max Lapshin max@maxidoors.ru
Contributors (roughly git log order):
FAQs
Unknown package
We found that benhutton-mysql2psql demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 19 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.