Hello Forum.
I am trying to export an object (a project folder) using OdiExportObject tool.
My syntax originally was:
OdiExportObject "-I_OBJECT=#GLOBAL_ID" "-CLASS_NAME=SnpFolder" "-EXPORT_DIR=<my-directory-path>" "-FILE_NAME=myexport.xml" "-FORCE_OVERWRITE=NO" "-RECURSIVE_EXPORT=YES" "-XML_VERSION=1.0" "-XML_CHARSET=ISO-8859-1" "-JAVA_CHARSET=ISO8859_1"
Where #GLOBAL_ID is a bind variable that resolves at runtime to the object's global id.
I got an error:
oracle.odi.core.security.cryptography.CipherTextMigrationException: ODI-14141: The provided key is not matching the key-specification. Key must : be of length 8-100, contain at least one alphabet (lower/uppercase), contain at least one numeric-digit (or) a special-character from: [@ # $ % + / =].
I then included the requested parameter (per MOS 1982684.1) - "-CONTINUE_EXPORT_WITHOUT_VALID_KEY=YES"
OdiExportObject "-I_OBJECT=#GLOBAL_ID" "-CLASS_NAME=SnpFolder" "-EXPORT_DIR=<my-directory-path>" "-FILE_NAME=myexport.xml" "-FORCE_OVERWRITE=NO" "-RECURSIVE_EXPORT=YES" "-XML_VERSION=1.0" "-XML_CHARSET=ISO-8859-1" "-JAVA_CHARSET=ISO8859_1" "-CONTINUE_EXPORT_WITHOUT_VALID_KEY=YES"
I still got an error:
oracle.odi.oditools.OdiToolInvalidParameterException: ODI-30151: Error while setting parameters on tool: OdiExportObject "-I_OBJECT=5125597c-063c-4e33-8b40-616733682e77" "-CLASS_NAME=SnpFolder" "-EXPORT_DIR=/dw/data/dev/datain/STU" "-FILE_NAME=myexport.xml" "-FORCE_OVERWRITE=NO" "-RECURSIVE_EXPORT=YES" "-XML_VERSION=1.0" "-XML_CHARSET=ISO-8859-1" "-JAVA_CHARSET=ISO8859_1" "-CONTINUE_EXPORT_WITHOUT_VALID_KEY=YES"
This error is less descriptive, so I am not sure what else I am doing wrong.
Any thoughts?
I am on 12.2.1.2.6
Thank you
Boris