ChangeDB入门


安装ChangeDB

yscorecore/changedb (github.com)
dotnet SDK 6.0
dotnet tool restore
dotnet tool install changedb.consoleapp -g
dotnet tool list -g

运行命令

changedb migration {source-database-type} "{source-connection-string}" {target-database-type} "{target-connection-string}" 

sqlserver -> postgres

changedb migration sqlserver "Data Source=(LocalDB)/MSSQLLocalDB;Initial Catalog=<DatabaseName>;Integrated Security=SSPI;"
postgres "Server=127.0.0.1;Port=5432;Database=<PostgresDatabaseName>;User Id=<postgres>;Password=<xxxxxx>;"

sqlce -> sqlserver

ChangeDb migration --max-fetch-bytes 10000 sqlce "Data Source=C:/xxxxxx.myox;Max Database Size=2048; Persist Security Info=False;" 
sqlserver "Data Source=(LocalDB)/MSSQLLocalDB;Initial Catalog=<DatabaseName>;Integrated Security=SSPI;"

sqlce -> postgres

ChangeDb migration --max-fetch-bytes 10000 sqlce "Data Source=C:/xxxxxx.myox;Max Database Size=2048; Persist Security Info=False;" 
postgres "Server=localhost;port=5432;Database={DBName};User Id=postgres;Password={PASSWORD}"

修改Schema

复制数据库备份

CREATE DATABASE db_backup WITH TEMPLATE "db"

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/270250.html

(0)
上一篇 2022年6月24日
下一篇 2022年6月24日

相关推荐

发表回复

登录后才能评论