Travis Wright
Travis Wright
LGTM. @likamrat - heads up on version bump PR for release tomorrow. Thanks!
Hi @schmunk42 Sounds like you have the sqlcmd command working in a connected tools container. If so you can connect to your SQL Server by running sqlcmd -S -U sa...
@jorgemmsilva and @sbarne3 There are basically two options for now: 1. Have the application create the database/schema when the application container starts up. Examples: https://github.com/twright-msft/mssql-aspnet-docker-demo-app (this is the standard ASP.NET...
FYI - We released CTP 1.4 today. This release of the mssql-server-linux image now includes the mssql-tools package (sqlcmd and bcp) in it. Executing sqlcmd as part of the entrypoint.sh...
We are planning to have the sqlservr process do these kinds of things on startup. By having sqlservr do it on startup by reading env vars or the mssql.conf file...
Aiming for CTP 2.1 (mid-May) release.
We did the first phase of this by having handling more environment variables in CTP 2.1 https://docs.microsoft.com/en-us/sql/linux/sql-server-linux-configure-environment-variables We didnt get the create DB part done yet. I'm not sure we...
Attaching DBs via env var is currently only possible on the SQL Server _Windows_ containers. For example: https://github.com/Microsoft/mssql-docker/tree/master/windows/mssql-server-windows#run-this-sample We want to do this on the Linux containers too, but we...
@jsilberm - You can attach or create databases on startup; it just takes a little bit more effort than an ideal solution. The ideal solution is that you provide some...
Integration services is not yet supported in a container.