Property file for virtual graph add

Hi, Stardog Team.

This might be a trivial question but…

How can I put the following additive argument on the virtual.properties file?
My target RDB is Hive and I need to set some argument on that connection.
(set hive.mapred.mode=nonstrict)

Current contents of “virtual.properties”

jdbc.url=jdbc\:hive2\://X.Y.Z.W:10000/act_030;auth=noSasl
jdbc.username=abc
jdbc.password=def
jdbc.driver=org.apache.hive.jdbc.HiveDriver

Thank you.

Hi Taeho,

You can set Tomcat JDBC pool options in this file too. The initSQL option should allow you to submit this command to the database. Try adding:

initSQL=set hive.mapred.mode=nonstrict

Best,
Jess