You might get the following error while trying to connect, test, or add SQL test statements using AtriumIntegrator with Spoon: org.pentaho.di.core.exception.KettleDatabaseException: Error connecting to database: (using class com.microsoft.sqlserver.jdbc.SQLServerDriver)
|
Legacy ID:KA427151 The reason for this is not very intuitive and we did not find this documented anywhere. The root cause is that one of the required parameters gets excluded during the first initial creation of the connection:
Under Options it is indeed missing:
The fix for this is to just add the missing "integratedSecurity" to the list and add a value. In this case I added "false".
Conversely a value of "true" would mean that Windows Authentication is used instead.
|