I’ve just used the new Key using the “Hard-code License Key using Command Line Parameter”.
Here is my batch:
#!/bin/sh
export INVANTIVE_CONN='N2COM\kopieer'
export INVANTIVE_SQL_FILE=/xxx/jobs/sql/multiquotidien.sql
export INVANTIVE_LOG_FILE=/var/log/dataHub/multiquotidien.log
export INVANTIVE_LOG_FILE_OVERWRITE=False
export INVANTIVE_INTERACTIVE=False
export INVANTIVE_EXE="/xxx/Invantive Data Hub 17.33.71 netcore21-linux-x64/Invantive.Producer.Data.Hub"
export INVANTIVE_LICENSE_KEY=lhxxxxxxxxxxxxxxxxxxxxxxxxxxxLD
"${INVANTIVE_EXE}" /verbose /database:"${INVANTIVE_CONN}" /file:"${INVANTIVE_SQL_FILE}" /logfile:"${INVANTIVE_LOG_FILE}" /logoverwrite:"${INVANTIVE_LOG_FILE_OVERWRITE}" /interactive:"${INVANTIVE_INTERACTIVE}" /licensekey:"${INVANTIVE_LICENSE_KEY}"
so I have no more licence problem.
But each time I tried to launch, I’ve got a strange error :
Erreur itgenobr024:
A connection to the database ‘N2COM\kopieer’ could not be established as user ‘’.
but the user is well defined in the XML-file
<?xml version="1.0" encoding="utf-16"?>
<settings xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
VersionUpdateDate="2019-04-26T14:11:42.5942772Z"
version="5"
forcedefault="false">
<group
name="N2COM"
sortingOrder="0">
<connection
name="kopieer"
sortingOrder="1000">
<database
order="0"
alias="tl"
provider="Teamleader"
userLogonCodeMode="Hidden"
passwordMode="Hidden"
defaultUserLogonCode="xxxx@xxxx.com"
defaultPassword="xxxxxxx"
connectionString="api-group-authentication=false" />
...
And we did not change anything else behalve the key.
Can you help us to correct the problem ?