Hi Bharath,
In v26 it's possible to set the ODBC and JDBC strings before the ae-db secret is generated, thus overwriting the strings that would otherwise be generated based on the other params.
For example:
kubectl create secret generic ae-db-oracle \
--from-literal=host=external-oracle.location \
--from-literal=vendor=oracle \
--from-literal=port='1521' \
--from-literal=user=username \
--from-literal=db=ORCLCDB.localdomain \
--from-literal=password=S3cret \
--from-literal=data-tablespace-name=ae_data \
--from-literal=index-tablespace-name=ae_index \
--from-literal=additional-parameters=";SP=NLS_LANGUAGE=AMERICAN,NLS_TERRITORY=AMERICA,CODESET=AL32UTF8,NLS_LENGTH_SEMANTICS=CHAR"
--from-literal=overwrite-odbc="ODBCVAR=NNJNIORO,DSN=10.0.0.1:1521/DB.EXAMPLE.COM;UID=uc4;PWD=???;SP=NLS\_LANGUAGE=AMERICAN,NLS\_TERRITORY=AMERICA,CODESET=AL32UTF8"
--from-literal=overwrite-jdbc="jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS\_LIST=(ADDRESS=(PROTOCOL=TCP)(PORT=1521)(HOST=10.0.0.1))(ADDRESS=(PROTOCOL=TCP)(PORT=1521)(HOST=10.0.0.2)))(CONNECT\_DATA=(SERVICE\_NAME=DB.EXAMPLE.COM)))"
You can find more details in the documentation here https://docs.automic.com/documentation/webhelp/english/ALL/components/DOCU/26.0.0/Automic%20Automation%20Guides/Content/Installation_Containers/containers_PreparingAEAnalyticsDB_ContainerInstallation.htm?Highlight=overwriteODBC
BR,
Oana