A brief description of what this project does and what are the requirements.
This Project simple database migration From One database to another using sql query.
- Firebird Server
- Python 3.10
- ODBC Driver for SQL Server
Download the firebird Server for windows. Firebird-Server
Download 3.10 or latest version of Python
Download ODBC From microsoft ODBC DRIVER Firebird-Server
Clone the Project into local
Install the Python Requirements.
pip install -r Requirements.txt
Edit the config.json
{
"firebird":{
"username":"sysdba",
"password":"master",
"host":"localhost",
"db_path":"C:/user/firebird/firebird-db/examples.fdb" // put your firebird here
},
"mssql": {
"DRIVER": "{ODBC Driver 17 for SQL Server}",
"SERVER": "tcp:you-data-url.database.windows.net",
"DATABASE": "database",
"USERNAME": "username",
"PASSWORD": "password"
},
"migration": {
"table": "table-name",
"type": "replace"
}
}
Run run.bat file in your terminal.
- User windows Schedule. how
Simple Database Migration is open source project licensed as MIT