db_copy.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import sqlalchemy.dialects.mssql.base
  2. from sqlalchemy import create_engine, MetaData, Boolean, DATETIME
  3. from database import conn_string
  4. source_dsn = {
  5. "user": "sa",
  6. "pass": "Mffu3011#",
  7. "server": "GC-SERVER1\\GLOBALCUBE",
  8. "database": "OPTIMA",
  9. "driver": "mssql",
  10. }
  11. source_schema = "import"
  12. target_dsn = {
  13. "user": "root",
  14. "pass": "",
  15. "server": "localhost",
  16. "database": "OPTIMA",
  17. "driver": "mysql",
  18. }
  19. target_schema = ""
  20. source_db = create_engine(conn_string(source_dsn))
  21. source_meta = MetaData()
  22. source_meta.reflect(bind=source_db, schema=source_schema)
  23. # print('\n'.join(source_meta.tables.keys()))
  24. target_db = create_engine(conn_string(target_dsn))
  25. source_meta.bind = target_db
  26. for table in source_meta.sorted_tables:
  27. table.schema = None
  28. for col in table.c:
  29. if getattr(col.type, "collation", None) is not None:
  30. col.type.collation = None
  31. if type(col.type) is sqlalchemy.dialects.mssql.base.BIT:
  32. col.type = Boolean()
  33. if type(col.type) is DATETIME:
  34. # print(table.name + '.' + col.name)
  35. col.server_default = None
  36. if type(col.type) is sqlalchemy.dialects.mssql.base.SMALLDATETIME:
  37. col.type = DATETIME()
  38. source_meta.create_all()