对于Cognos Server 64位Windows系统,注意!请下载32位程序。即:

 

因为Cognos只认32位ODBC程序。这里千万要注意。对于64位的Windows系统的ODBC有两个程序,即:

Odbcad32.exe 文件的 32 位版本位于 %systemdrive%\Windows\SysWoW64 文件夹中。

Odbcad32.exe 文件的 64 位版本位于 %systemdrive%\Windows\System32 文件夹中。

我们安装后,要打开%systemdrive%\Windows\SysWoW64中的ODBC程序进行配置。千万不要到控制面板中计算机管理中的ODBC中配置,因为这个是64位的ODBC。

ODBC配置后如下图(详细参数,非常简单,这里不给出了,注意db的编码要在Detail中设置一下。)

Cognos的ODBC配置页面

BMT-MD-6001 or BMT-IMP-0016 error when running Metadata Wizard in Framework Manager

Technote (troubleshooting)

Problem(Abstract)

When creating a new project using the Metadata Wizard, modelers are presented with the following error message after selecting a Data Source:
BMT-MD-6001 Connection to the data source 'great_outdoors_sales' failed because a valid connection string was not specified.
ODBC data source connections will return the following error:
BMT-IMP-0016 The provider type OD is not supported in this mode.

Cause

The Framework Manager project is configured to use Dynamic Query Mode but no JDBC connection details have been entered in the Data Source connection in Cognos Administration. For more details regarding configuring connectivity for Dynamic Query Mode, please refer to the "Data Sources and Connections" section of the Administration and Security Guide.

Dynamic Query Mode does not support ODBC connections.

Resolving the problem

To resolve this issue, there are two possible steps:

    Switch to Classic Query Mode
    1. If creating a new model, uncheck the "Use Dynamic Query Mode" option in the New Project window.
    2. If updating an existing model, select the Project item (the highest level item in the Project viewer panel) and in the Properties pane set the Query Mode property to Compatible.

    Configure JDBC Connection Details in Cognos Administration

    1. Using a web browser, navigate to the Cognos Connection URL.
    2. Log in as a user with Administrative privileges.
    3. Click Launch -> Cognos Administration.
    4. Click the Configuration tab.
    5. Click the name of the data source to be modeled.
    6. In the Actions column, click the Set Properties icon next to the appropriate Data Source connection.
    7. Click the Connection tab.
    8. Click the pencil icon next to the Connection String entry.
    9. Click the JDBC tab.
    10. Ensure "Enable JDBC connection" is checked and fill in the details for the data source connection.
    11. Click OK.
    12. Open Framework Manager and run the Metadata Wizard.

Related information

Data Sources and Connections - Administration and Secur

cognos10.2.2使用ODBC连接oracle92数据库(BMT-IMP-0016)的更多相关文章

  1. [原]php远程odbc连接sqlsvr数据库,自定义端口,命名实例的连接方式

    远程odbc连接sqlsvr数据库,自定义端口,命名实例的连接方式,默认如果不修改的话sqlsvr的端口号是1433,默认实例名就是机器名,,如果既用了命名实例,又改了默认端口,改怎么连接数据库呢? ...

  2. 解决ODBC连接Oracle数据库报Unable to connect SQLState=08004问题

    今天用ODBC连接Oracle数据库时,报了这么一个错“Unable to connect SQLState=08004 Oracle ODBC Ora-12154”,上网查了好久都说PowerDes ...

  3. [转]ODBC连接ORACLE数据库的设置

    本文转自:http://www.cppblog.com/edog/articles/1420.html 首先安装Oracle,以Oracle 817为例,作为ODBC开发者的客户端,才能使用Oracl ...

  4. Asp.Net通过ODBC连接Oracle数据库

    本来有个项目是通过安装Oracle client然后让asp.net引用System.Data.OracleClient来访问Oracle数据库的,但是不知道为什么老是报:ORA-12170:连接超时 ...

  5. 测试odbc连接sqlsever数据库是否成功的代码

    1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<windows.h> 4 #include<sql.h ...

  6. 配置DB2的数据库ODBC连接

    打开cmd窗口,输入db2cmd启动db2 clp窗口 输入db2 list node directory查看是否有数据库需要连接的节点 如果不存在,则 节点编目:db2 catalog tcpip ...

  7. php连接Access数据库的三种方法

    http://www.php100.com/html/webkaifa/PHP/PHPyingyong/2009/1115/3524.html 虽然不是一个类但先放这儿吧 最近想把一个asp的网站改成 ...

  8. Windows server2008 搭建ASP接口访问连接oracle数据库全过程记录--备用

    真的是太不容易了,以前的时候在window server 2003上面搭建了一套asp+oracle的接口系统,就费了好大的劲儿,其实那会迷迷瞪瞪的也不知道怎么的就弄好了,也懒得管了.OK,从昨天到今 ...

  9. Windows server2008 搭建ASP接口訪问连接oracle数据库全过程记录

    真的是太不easy了,曾经的时候在window server 2003上面搭建了一套asp+oracle的接口系统.就费了好大的劲儿,事实上那会迷迷瞪瞪的也不知道怎么的就弄好了,也懒得管了.OK,从昨 ...

随机推荐

  1. Installing EF Power Tools into VS2015

    TLDR: If you don’t want to do the tasks (even though they are so easy) you can download the updated ...

  2. [POJ2234]Matches Game

    Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9297   Accepted: 5365 Description Here ...

  3. HW4.36

    import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner i ...

  4. html5 做游戏 Quintus Sublime Text牛逼的神器

  5. centos6 kvm网卡桥接

    以前用VMware,我的上司说,你既然都用CentOS的桌面,那就研究一下KVM. 好吧,上司做运维好几年了,就听了他的,装了一个KVM. KVM的网络默认是NAT,不方便,就学习BRIDGE!!! ...

  6. java中的"goto"--label

    java中没有goto,但是goto是保留字.例如int goto;是不合法的. 但是java中有标签,仅作用在多重循环的continue和break中. continue和break只能作用于本层循 ...

  7. Oracle Enterprise Linux 64-bit下安装apache-tomcat-7.0.53步骤

    測试环境:VMware Workstation v9.0.2软件中安装好Oracle Enterprise Linux 5.8 64-bit虚拟机 安装软件:jdk-7u40-linux-x64.rp ...

  8. jekyll bootstrap更改主题theme

    使用主题 介绍: 由于JB版本号0.2.X的主题,如今全然是模块化的.他们跟踪和单独版本号的主题包. 这让每一个人都能够自由公布和共享主题. Jekyll-Bootstrap v 0.2.x仅仅附带t ...

  9. Java凝视Override、Deprecated、SuppressWarnings具体解释

    一.什么是凝视     说起凝视,得先提一提什么是元数据(metadata).所谓元数据就是数据的数据.也就是说,元数据是描写叙述数据的.就象数据表中的字段一样,每一个字段描写叙述了这个字段下的数据的 ...

  10. 谋哥:App排行榜的秘密

    App在改变世界,改变人们的生活.       如今购物大家都用淘宝.京东,吃饭你会用饭否,看天气预报你用墨迹天气,看视频用优酷.K歌你用唱吧,聊天联系你用微信,看新闻你用今日头条等等.你的生活由你自 ...