Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, using qlik sense. After update to 2019 feb release i am getting errors in my data load tasks. (Connector reply error: Executing non-SELECT queries is disabled. Please contact your system administrator to enable it.)
According to this articles (https://help.qlik.com/en-US/connectors/Subsystems/ODBC_connector_help/Content/Connectors_ODBC/How-to... and https://support.qlik.com/articles/000064538 ) I have to change "allow-nonselect-queries" setting to true in my QvOdbcConnectorPackage.exe.config file
But my QvOdbcConnectorPackage.exe.config file does not contain "allow-nonselect-queries" property.
I am asking for example of QvOdbcConnectorPackage.exe.config with "allow-nonselect-queries" enabled.
here is my current content of QvOdbcConnectorPackage.exe.config :
<?xml version="1.0"?> <configuration> <configSections> <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <section name="QvOdbcConnector.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/> </sectionGroup> </configSections> <userSettings> <QvOdbcConnector.Properties.Settings> <setting name="LoggingLevel" serializeAs="String"> <value>ERROR</value> </setting> </QvOdbcConnector.Properties.Settings> </userSettings> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/> </startup> <appSettings> <add key="InstallationMode" value="Enterprise" /> </appSettings> </configuration>
I have been having the same problem too. The config property is under the <appSettings> section near the bottom of the file. Add a row like "<add key="allow-nonselect-queries" value="true" />" so your config file would read:
<appSettings>
<add key="allow-nonselect-queries" value="true" />
<add key="InstallationMode" value="Enterprise" />
</appSettings>
I have been having the same problem too. The config property is under the <appSettings> section near the bottom of the file. Add a row like "<add key="allow-nonselect-queries" value="true" />" so your config file would read:
<appSettings>
<add key="allow-nonselect-queries" value="true" />
<add key="InstallationMode" value="Enterprise" />
</appSettings>