What does a modern command line look like for sqlcmd/bcp? #113
shueybubbles
started this conversation in
General
Replies: 1 comment
-
somewhat related - but it would be fantastic if sqlcmd (or even a diff msft tool) could be used to bulk copy parquet files. The current approaches for loading parquet files to on-prem mssql aren't especially quick. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The current
sqlcmd
implementation in this repo is designed to be a dropin replacement for the ODBC-based version as much as possible. Going forward we want to create a more modern command that has a richer set of verbs much likeaz
andkubectl
offer a breadth of functionality for Azure and Kubernetes respectively.As we start an implementation of
bcp
that has a similar goal to replace the existingbcp
, we plan to create a new executable that offers bothbcp
andsqlcmd
functionality, distinguished by verbs passed on the command line.We are looking for input on what this new parameter set should look like to make it readily adaptable into your CI/CD pipelines or administrative workflows.
Some questions to ponder:
query
is likely a good verb for thesqlcmd
functionality, whilebulkcopy
could work forbcp
.sqlcmd
andbcp
that we could skip porting over to the combined tool, as not being required for modern tools?Beta Was this translation helpful? Give feedback.
All reactions