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 (import or export). The current approaches for loading parquet files to on-prem mssql aren't especially quick. Most modern data movement relies on parquet instead of csv edit: |
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
Uh oh!
There was an error while loading. Please reload this page.
-
The current
sqlcmdimplementation 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 likeazandkubectloffer a breadth of functionality for Azure and Kubernetes respectively.As we start an implementation of
bcpthat has a similar goal to replace the existingbcp, we plan to create a new executable that offers bothbcpandsqlcmdfunctionality, 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:
queryis likely a good verb for thesqlcmdfunctionality, whilebulkcopycould work forbcp.sqlcmdandbcpthat 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