Issue to connect with SYSDBA using internal_logon properties

Hello,



I’m trying to connect to an Oracle database with complex
configuration : Connection with wallet and SYSDBA role.

I’m using the following script :

MASTERXML=dbchangelog.xml
LOGINADM=OPS$ORAADM
DRIVER=“oracle.jdbc.OracleDriver"
JDBCURL=“jdbc:oracle:thin:@DDBA01D1"
JARFILE=”${ORACLE_HOME}/jdbc/lib/ojdbc6.jar:${ORACLE_HOME}/oc4j/jlib/oraclepki.jar:${ORACLE_HOME}/oc4j/jlib/osdt_cert.jar"
LQBHOME=”/home/mboutkhi/tmp/liquibase/liquibase"
java
-Doracle.net.tns_admin=/etc
-Doracle.net.wallet_location=/soft/oracle/adm/wallet
<br /> -jar $LQBHOME/jar/liquibase-3.2.2.jar
<br /> --driver=${DRIVER} <br />
–classpath=${JARFILE} <br /> --url=${JDBCURL}
<br /> --changeLogFile=${MASTERXML}
<br /> --defaultSchemaName=${LOGINADM}
<br /> --logLevel=debug
<br />–driverPropertiesFile=/soft/oracle/adm/wallet/sqlnet.ora
<br />–defaultsFile=syspropfile.txt <br /> update


Into sysprofile.txt file I have the following attribute :
internal_logon: sysdba

The error is :

Unexpected error running Liquibase: Unknown parameter: 'internal_logon'


SEVERE 5/18/15 5:44 PM:
liquibase: Unknown parameter:
'internal_logon’
liquibase.exception.CommandLineParsingException:
Unknown parameter: ‘internal_logon’
at
liquibase.integration.commandline.Main.parsePropertiesFile(Main.java:431)

at
liquibase.integration.commandline.Main.run(Main.java:149)

at liquibase.integration.commandline.Main.main(Main.java:89)


Does anyone know how to specify this property in the command line ?

Thanks

Regards,

Mohamed