Metadata-Version: 2.1
Name: cbl_migrator
Version: 0.1.3
Summary: Migrates Oracle dbs to PostgreSQL, MySQL and Sqlite
Home-page: https://github.com/chembl/cbl_migrator
Author: Eloy Félix
Author-email: eloyfelix@gmail.com
License: MIT
Description: # CBL Migrator
        
        Small SQLAlchemy based library that migrates Oracle DBs to MySQL, PostgreSQL and SQLite. Used in ChEMBL dumps generation process.
        
        to use it:
        
        ```python
        from cbl_migrator import DbMigrator
        
        origin = 'oracle://{user}:{pass}@{host}:{port}/{sid}?encoding=utf8'
        dest = 'postgresql://{user}:{pass}@{host}:{port}/{dbname}?client_encoding=utf8'
        
        migrator = DbMigrator(origin, dest, ['excluded_table1', 'excluded_table2'])
        migrator.migrate()
        ```
        
        ## What it does (in order of events)
        
        - Copies tables from origin to dest using the closest data type for each field. No constraints except PKs are initially copied across.
        - Table contents are migrated from origin to dest tables. In parallel.
        - If the data migration is succesful it will first generate the constraints and then the indexes. Any index in a field with a previously created UK will be skipped (UKs are implemented as unique indexes).
        - It logs every time it was not possible to migrate an object, e.g., ```(psycopg2.OperationalError) index row size 2856 exceeds maximum 2712 for index.```
        
        ## What it does not do
        
        - It won't migrate any table without a PK. May hang with a table without PK and containing an UK field referenced as FK in another table.
        - It does not try to migrate server default values.
        - It does not set autoincremental fields.
        - It does not try to migrate triggers nor procedures.
        
        ## SQLite
        
        SQLite can not:
        
        - concurrently write
        - alter table ADD CONSTRAINT
        
        So only one core is used when migrating to it. All constraints are generated at the time of generating the destination tables and it sequentially inserts rows in tables in correct FKs order.
        
        
        ## MySQL
        
        CLOBs are migrated to LONGTEXT.
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
