https://github.com/hyperq/ms2my
a tool to transfer sql server database to mysql
https://github.com/hyperq/ms2my
Last synced: 6 months ago
JSON representation
a tool to transfer sql server database to mysql
- Host: GitHub
- URL: https://github.com/hyperq/ms2my
- Owner: hyperq
- License: mit
- Created: 2019-12-24T05:34:02.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-08T06:36:44.000Z (about 6 years ago)
- Last Synced: 2025-08-14T22:46:36.830Z (11 months ago)
- Language: Go
- Size: 5.9 MB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ms2my
a tool to transfer sql server database to mysql
## Install
```bash
go get github.com/hyperq/ms2my
```
## How to use
```bash
md2my -i 127.0.0.1 -d dbname -p 123456 -t user
```
you can use md2my -h check all flags
```bash
ms2my [flags]
Flags:
-d, --dbname string dbname
-h, --help help for ms2my
-i, --ip string ip (default "127.0.0.1")
-p, --password string mssql password
--port int mssql port (default 1433)
-t, --tablename string table names,you yan use , join mult
-u, --username string mssql username (default "sa")
```