diff options
author | Trabelsi Tobias <tobias.trabelsi@sonarsource.com> | 2022-01-26 08:41:12 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-01-26 20:02:44 +0000 |
commit | b011476a0b167dc3cd5252c3428be01956dee5b2 (patch) | |
tree | 5fe696820c8ffa8f8b933a67fcd1dda9e384169c /server/sonar-docs/src/pages/setup/sonar-properties.md | |
parent | 26c830d6910e9a26444483f825fb8bb8631ac962 (diff) | |
download | sonarqube-b011476a0b167dc3cd5252c3428be01956dee5b2.tar.gz sonarqube-b011476a0b167dc3cd5252c3428be01956dee5b2.zip |
SONAR-15679 updated jdbc drivers
Diffstat (limited to 'server/sonar-docs/src/pages/setup/sonar-properties.md')
-rw-r--r-- | server/sonar-docs/src/pages/setup/sonar-properties.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-docs/src/pages/setup/sonar-properties.md b/server/sonar-docs/src/pages/setup/sonar-properties.md index b153dff95e9..6073c4edc36 100644 --- a/server/sonar-docs/src/pages/setup/sonar-properties.md +++ b/server/sonar-docs/src/pages/setup/sonar-properties.md @@ -37,7 +37,7 @@ By default the schema named "public" is used. It can be overridden with the para **`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar;integratedSecurity=true`** A database named sonar must exist and its collation must be case-sensitive (CS) and accent-sensitive (AS). Use this connection string if you want to use integrated security with Microsoft Sql Server. Do not set the `SONAR_JDBC_USERNAME` or `SONAR_JDBC_PASSWORD` property if you are using Integrated Security. -For Integrated Security to work, you have to download the Microsoft SQL JDBC Driver 9.2.0 package [here](https://docs.microsoft.com/en-us/sql/connect/jdbc/release-notes-for-the-jdbc-driver?view=sql-server-ver15#92) and copy mssql-jdbc_auth-9.2.0.x64.dll to your path. +For Integrated Security to work, you have to download the Microsoft SQL JDBC Driver 9.4.1 package [here](https://docs.microsoft.com/en-us/sql/connect/jdbc/release-notes-for-the-jdbc-driver?view=sql-server-ver15#94) and copy `mssql-jdbc_auth-9.4.1.x64.dll` to your path. **`SONAR_JDBC_URL=jdbc:sqlserver://localhost;databaseName=sonar`** Use this connection string if you want to use SQL Auth while connecting to MS Sql Server. Set the `SONAR_JDBC_USERNAME` and `SONAR_JDBC_PASSWORD` appropriately. |