Stuart Padley
Stuart Padley
Currently a search for "sqlcmd" in Windows Store returns zero apps.
Right now the `sqlcmd use` functionality copies the file to the container, and then before the action to restore/attach etc. This comment in a code review suggests we enable the...
Viper automatically reflects SET SQLCMD_ env vars into the sqlconfig file. So when a user SET SQLCMD_EULA, accept_eula is getting persisted into the sqlconfig file. I don't think it is...
winget supports user and machine installers, we might as well implement the full complement. But for usability we should only do this if we can ensure "machine" is the default,...
Right now `sqlcmd create` is following the documentation from: https://learn.microsoft.com/en-us/sql/linux/quickstart-install-connect-docker?view=sql-server-ver16&pivots=cs1-bash which recommends: sudo docker run -e "ACCEPT_EULA=Y" -e "MSSQL_SA_PASSWORD=" \ -p 1433:1433 --name sql1 --hostname sql1 \ -d \ mcr.microsoft.com/mssql/server:2022-latest...
Folks are interested in using sqlcmd for presentations/conferences. Sometime wi-fi in these environments can be flaky etc which could cause default workflow to fail, or take longer (e.g. `sqlcmd create...
Add support for something like: `sqlcmd create mssql --env "MSSQL_AGENT_ENABLED=True" --env "NAME=var" -- T9398` This would ensure trace flag 9398 (and the two --env vars) are passed into ./sqlservr every...
Right now `sqlcmd config connection-strings` is using sprintf to build the connection strings. This probably doesn't do escaping correctly in all situations. Rewrite this code to use a Uri build...
kubectl shows server/cluster side version when running `kubectl version`, it would be nice to do the same for `sqlcmd --version`. (Also, should we implement `sqlcmd version` as an alias for...
Enable entering the password through standard input or by being prompted for it? sqlcmd users are generally accustomed to the password prompt in interactive mode, and ci/cd pipelines that use...