Introduction:
In Strategy Analytics Enterprise 9.4.1, Cloudera v2.5 ODBC drivers are supported to establish connectivity to Cloudera CDH 4.x. Refer to the following Community Article for further information:
KB46881: Certification of Cloudera v2.5 drivers to connect to Cloudera CDH 4.x in Strategy Analytics Enterprise 9.4.1
The section below provides steps to establish ODBC connectivity to Hive from Windows and Linux Operating Systems.
Windows

Linux
[Cloudera_Hive_2.5] Description=Cloudera ODBC Driver for Apache Hive Driver=<FULL_PATH_TO_DRIVER>/lib/32/libclouderahiveodbc32.so DriverUnicodeEncoding=2 HOST=<HIVE_SERVER_IP_OR_NAME> PORT=<PORT_ON_WHICH_HIVE_SERVER_IS_RUNNING> Schema=wh2 FastSQLPrepare=0 UseNativeQuery=0 HiveServerType=2 AuthMech=0 #KrbHostFQDN= #KrbRealm= #KrbServiceName=hive #KrbServiceName= #UID=hdfs
[ODBC Data Sources] Cloudera_Hive_2.5=Cloudera ODBC Driver for Apache Hive
[Cloudera ODBC Driver for Apache Hive] Driver=<FULL_PATH_TO_DRIVER>/lib/32/libclouderahiveodbc32.so Description=Cloudera ODBC Driver for Apache Hive Setup=<FULL_PATH_TO_DRIVER>/lib/32/libclouderahiveodbc32.so APILevel=2 ConnectFunctions=YYY DriverODBCVer=1.0 FileUsage=0 SQLLevel=1
#
# ODBC Driver for Hive
#
HIVE_CONFIG='<FULL_PATH_TO_DRIVER>/lib/32'
CLOUDERAHIVEINI=<FULL_PATH_TO_DRIVER>/lib/32/cloudera.hiveodbc.ini
if [ "${HIVE_CONFIG}" != '<HIVE_CONFIG>' ]; then
export HIVE_CONFIG
mstr_append_path LD_LIBRARY_PATH "${HIVE_CONFIG:?}"/
export LD_LIBRARY_PATH
fi
if [ "${CLOUDERAHIVEINI}" != '<CLOUDERAHIVEINI>' ]; then
export CLOUDERAHIVEINI
if [ ! -f "${CLOUDERAHIVEINI:?}" ]; then
echo "${0##*/}: WARNING: ${CLOUDERAHIVEINI:?} does not exist" >&2
fi
fi
KB46929