Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cloudfy/datavoyager
Datamigration CLI tool for SQL server. Support exporting and imports databases from Azure SQL and SQL Standalone.
https://github.com/cloudfy/datavoyager
Last synced: 13 days ago
JSON representation
Datamigration CLI tool for SQL server. Support exporting and imports databases from Azure SQL and SQL Standalone.
- Host: GitHub
- URL: https://github.com/cloudfy/datavoyager
- Owner: cloudfy
- License: mit
- Created: 2024-12-09T09:11:24.000Z (18 days ago)
- Default Branch: main
- Last Pushed: 2024-12-09T09:40:30.000Z (18 days ago)
- Last Synced: 2024-12-09T10:28:59.575Z (18 days ago)
- Language: C#
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataVoyager
Datamigration CLI tool for SQL server. Support exporting and imports databases from Azure SQL and SQL Standalone.## Usage
### Export
Exports a database to a DVO file.```bash
dvcli export \
--output "c:\temp\export.dvo" \
--connection "Server=(azureserver).database.windows.net;Authentication=Active Directory Interactive;Encrypt=True;Database=(database)" \
--ignore "MyTable"
```**Options**
| parameter | description |
| - | - |
| output | File name. |
| connection | Connection-string to the database. |
| ignore | Comma-seperated list of tables to ignore. |### Import
Imports a DVO file to a database.```bash
dvcli import \
--file "c:\temp\export.dvo" \
--connection "Server=.\SQLExpress;Trusted_Connection=True;TrustServerCertificate=true;Database=(database)" \
```**Options**
| parameter | description |
| - | - |
| file | File name. |
| connection | Connection-string to the database. |Get connection string from https://www.connectionstrings.com/.