diff --git a/docs/kubernetes.md b/docs/kubernetes.md index fce59e4..4e8591c 100644 --- a/docs/kubernetes.md +++ b/docs/kubernetes.md @@ -74,7 +74,7 @@ $mssqlPod = kubectl get pods -n mssql -o jsonpath='{.items[0].metadata.name}' # Use sqlcmd.exe to create a database named "DurableDB". # Replace 'PLACEHOLDER' with the password you used earlier -kubectl exec -n mssql $mssqlPod -- /opt/mssql-tools/bin/sqlcmd -S . -U sa -P "PLACEHOLDER" -Q "CREATE DATABASE [DurableDB] COLLATE Latin1_General_100_BIN2_UTF8" +kubectl exec -n mssql $mssqlPod -- /opt/mssql-tools18/bin/sqlcmd -S . -U sa -P "PLACEHOLDER" -Q "CREATE DATABASE [DurableDB] COLLATE Latin1_General_100_BIN2_UTF8" ``` ?> If you have an old version of the database already deployed, you may want to first delete that one using `DROP DATABASE [DurableDB]` SQL command. This should only be necessary when using alpha builds of the Durable Task SQL provider. Newer builds will take care of database schema upgrades automatically. diff --git a/docs/quickstart.md b/docs/quickstart.md index f3ae8ee..60aca7f 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -164,7 +164,7 @@ docker run --name mssql-server \ # wait a few seconds for the container to start... # create the database with strict binary collation -docker exec -d mssql-server /opt/mssql-tools/bin/sqlcmd \ +docker exec -d mssql-server /opt/mssql-tools18/bin/sqlcmd \ -S . \ -U sa \ -P "$pw" \ diff --git a/test/setup.ps1 b/test/setup.ps1 index f8e51a9..e58c020 100644 --- a/test/setup.ps1 +++ b/test/setup.ps1 @@ -30,4 +30,4 @@ docker ps # Create the database with strict binary collation Write-Host "Creating '$dbname' database with '$collation' collation" -ForegroundColor DarkYellow -docker exec -d mssql-server /opt/mssql-tools/bin/sqlcmd -S . -U sa -P "$pw" -Q "CREATE DATABASE [$dbname] COLLATE $collation" \ No newline at end of file +docker exec -d mssql-server /opt/mssql-tools18/bin/sqlcmd -S . -U sa -P "$pw" -Q "CREATE DATABASE [$dbname] COLLATE $collation" \ No newline at end of file