Problem accessing informix ODBC 32 bit System DSN using Microsoft Query external data sources in Microsoft Excel 2010

Hi all...
I'm hoping if anybody could help me. I'm using Microsoft Excel 2010 + Windows 7 Professional 64 bit. I've installed the informix client sdk for odbc drivers to create odbc 32 bit connection. Before this, i had successfully installed in
another Windows 7 Professional 64 bit PC the informix client drivers and configured the odbc connection for it. During that time, i can access the 32 bit ODBC using the microsoft query from the Microsoft Excel 2007. But now...in the new PC, even though i had
successfully installed the informix client and manage to configure the 32 bit ODBC for it, my Microsoft Excel 2010 can't call/recognise the 32 bit ODBC connection as if the Microsoft Excel 2010  only called the 64 bit ODBC. Is it in Microsoft excel 2007
it is possible to recognise the 32 bit ODBC but the Microsoft Excel 2010 can't? Is there any solution if my Microsoft Excel 2010 still want to use the 32 bit ODBC connection.

Hi,
Excel 2007 has only 32-bit since 64-bit applications for Office are available only for Office 2010. Thus, you can use
32 bit ODBC between Microsoft Excel 2007 & Windows 7 Professional 64 bit. Now, you are using Microsoft Excel 2010 64 bit & Windows 7 Professional 64 bit, thus, you must install the 64 bit ODBC drive. If you still need to use 32
bit odbc drive, please use 32 bit Excel 2010. Here is the detailed steps:
http://datasummit.co.za/how-to-install-an-informix-odbc-driver-on-windows-7-for-ms-office-2010
Regards,
George Zhao
TechNet Community Support
It's recommended to download and install
Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
programs.

Similar Messages

  • External data sources and ODBC

    Does Numbers 2009 support connecting to external data sources such as MySQL via ODBC?

    NO.
    Yvan KOENIG (VALLAURIS, France) jeudi 10 février 2011 17:31:31

  • Web Analyzer - ability to access external data sources?

    Documentation on help.sap.com for the 2004s Web Analyzer notes it can render queries, query views, infoproviders, and <b>external data sources</b> for ad-hoc analysis in the standardized reporting template.
    Can anyone clarify exactly what constitutes external data?  To my knowledge, I didn't think it was possible to report on something outside of the BI instance (let's say an Oracle table on another server, for example).
    Thanks in advance for your help.

    Hi Scott,
    in the Web Analyzer you can use external OLAP data sources(ODBO or XMLA) . Relational data sources are not supported in NW2004s.
    You can set this up in the portal system landscape.
    Please have a look on
    http://help.sap.com/saphelp_nw2004s/helpdata/de/8e/020597f9b4486492e69283fab424fa/frameset.htm
    and
    http://help.sap.com/saphelp_nw2004s/helpdata/de/8e/020597f9b4486492e69283fab424fa/frameset.htm
    Depending on the data source different capabilities are supported, so that some options are only available when you are using the BI OLAP Processor and won't be supported when using external data sources.
    Heike

  • Remove odbc system dsn using batch file and odbcconf

    I create user system dsn entries by using a batch file and odbcconf call.  I've found references here on how to do that, yet cannot seem to find any results on how to remove them using that same call.  The library information (http://msdn.microsoft.com/en-us/library/ee388579(VS.85).aspx) states add and modify a system dsn for configdsn and configsysdsn and references equivalent to SQLConfgDataSource function. (http://msdn.microsoft.com/en-us/library/ms716476(VS.85).aspx) but the config data source function has a a removal and this doesn't seem too. 
    Apologies for being obtuse, but I can't seem to locate it.  Any links to how this is done from a batch file are much appreciated.
    Regards,
    NR.

    John C is basically correct, you can remove a System ODBC data source via the registry, but there is apparently no way via odbcconf.exe.  That is of course really stupid and poor programming!
    John, however, forgot another important registry entry.  That key deletion he mentioned will disable the odbc connection, but not remove it entirely.  If you just do that and then open the "ODBC Data Source Administrator", you will find the
    connection is still listed, but you can't remove it or modify it.  It becomes completely screwed up! There is a value to delete as well which dictates if the connection is listed.  Consider it the "header" to the data source.
    Also, in Windows 2003 and 2008 at least, the registry key John C listed is not quite the location to modify either.  This is where to find them in those OSs:
    HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\%DSN%
    or
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ODBC\ODBC.INI\%DSN%
    The "header" I reffered to is a string value in inside a key (not the whole key!)
    HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources
    or
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ODBC\ODBC.INI\ODBC Data Sources
    The string value is the data source name.  This entry must be removed to remove the data source listing entirely.
    Here are some batch snipets for creating and then removing an odbc data source.  I'm leaving out some premiliary chunks, but you can figure it out from here. If you can't, you probably shouldn't be messing with this stuff in the first place!
    In these scripts, I create and remove a 32-bit data source in either a 32-bit or 64-bit version of windows.  The windows folder variable gets set to either "C:\Windows\System32" or "C:\Windows\SysWOW64" depending on the os.  In case you didn't
    know, on a 64-bit machine there is are also 2 differrent versions of the "ODBC Data Source Administrator" gui tool and the data source lists differ (32-bit vs 64-bit lists).  The 32-bit version on a 64 bit OS is found at "C:\Windows\SysWOW64\odbcad32.exe". 
    The one in the start menu will load the 64-bit version so you will never find your 32-bit connections there.
    Note - for simplicity I use the database name as the user name and and the data source name as well (in case there was any confusion). 
    Create the connection like so:
    echo Creating 32-Bit System ODBC Connection "%DatabaseName%"...
    "!WindowsFolder!\ODBCCONF.EXE" CONFIGSYSDSN "!ODBCDriver!" "DSN=%DatabaseName%;Server=localhost;Port=3306;Database=%DatabaseName%;UID=%DatabaseName%;PWD=%DatabasePassword%"
    And then remove it like this:
    echo Removing 32-Bit System ODBC Connection "%DatabaseName%"...
    if "%WindowsBits%"=="32" (
    If Exist "!TempRegFile!" Del "!TempRegFile!"
    echo Windows Registry Editor Version 5.00>>"!TempRegFile!"
    echo.>>"!TempRegFile!"
    echo [-HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\%DatabaseName%]>>"!TempRegFile!"
    echo [HKEY_LOCAL_MACHINE\SOFTWARE\ODBC\ODBC.INI\ODBC Data Sources]>>"!TempRegFile!"
    echo "%DatabaseName%"=->>"!TempRegFile!"
    regedit /s "!TempRegFile!"
    ) else (
    If Exist "!TempRegFile!" Del "!TempRegFile!"
    echo Windows Registry Editor Version 5.00>>"!TempRegFile!"
    echo.>>"!TempRegFile!"
    echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ODBC\ODBC.INI\%DatabaseName%]>>"!TempRegFile!"
    echo [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\ODBC\ODBC.INI\ODBC Data Sources]>>"!TempRegFile!"
    echo "%DatabaseName%"=->>"!TempRegFile!"
    regedit /s "!TempRegFile!"
    If Exist "!TempRegFile!" Del "!TempRegFile!"

  • Thai Language problem with informix ODBC

    I have a problem about crystal report connected informix database.
    It displays Thai language incorrectly such as ºÃÔÉÑ· ˹Öè§ÈÙ¹Âì˹Öè§.
    Informix ODBC version is IBM Informix 3.82 32 BIT and crystal report version 11.
    Please help me to solve this problem.
    Thank you

    Please re-post if this is still an issue to the Data Connectivity - Crystal Reports Forum or purchase a case and have a dedicated support engineer work with you directly

  • Microsoft Access Text Driver missing! and ...Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "(null)".

    In order to use OpenRowSet, I installded Microsoft Access Database Engine 2010. However, I could not find Microsoft Access Text Driver in Drivers of ODBC Data Source Administrator.  Could I get some help with that?
    Thank you very much!

    I am local admin and try to run the following script, but I got an error. Could anyone help me look at it?
    EXEC sp_configure 'show advanced options', 1
    go
    RECONFIGURE
    GO
    EXEC sp_configure 'ad hoc distributed queries', 1
    go
    RECONFIGURE
    GO
    SELECT * FROM OPENROWSET('MSDASQL',
    'Driver={Microsoft Access Text Driver (*.txt, *.csv)};
    DefaultDir=D:\;','SELECT * FROM Test.csv')
    Configuration option 'show advanced options' changed from 1 to 1. Run the RECONFIGURE statement to install.
    Configuration option 'Ad Hoc Distributed Queries' changed from 1 to 1. Run the RECONFIGURE statement to install.
    OLE DB provider "MSDASQL" for linked server "(null)" returned message "[Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified".
    Msg 7303, Level 16, State 1, Line 1
    Cannot initialize the data source object of OLE DB provider "MSDASQL" for linked server "(null)".

  • System Throws short dump while executing data source 2LIS_11_VASCL in RSA3.

    Hello Experts,
    I got short dump while executing data source 2LIS_11_VASCL in RSA3.
    The details are as follow.
    When importing object "MC11VA0SCL_TAB", the structure did not match the
    structure of the target object. The error occurred in component
    no. 567.
    This may be due to one of the following reasons:
    - the structure is actually different (the next field has, for
      example, a different data type) or
    - the same sequence of components were exported and imported,
      but the fields were from other include units.
    I have checked source and target fields and those are of same length and data type.
    Could you please give some points why this short dump occurs.
    Thanks
    Konda Reddy

    Hi,
    This error is not between BI and R/3.  It is within R/3.  You may have setup data and then modified the datasource.
    Delete setup data, generate your datasource again.  Setup data and try again.
    If you are on a live system with data setup after a downtime and you do not want to delete it, then bring your datasource to the original state when you setup data and pull data.
    Cheers....

  • Excel web access: Parameters in external data sources not supported???

    I have a SharePoint 2013 site with Excel services.
    The site itself has a Current User Filter Web Part which gives filter value [userID] to a Excel web access -web part.
    In the Excel itself I have a named area(UserIDfromSharePoint) defined as a parameter.
    This parameter is being used in a Microsoft Query into an SQL database table:
    Select * from [MyTable] where UserID = ?
    The question mark is set as a parameter to the named area UserIDfromSharePoint.
    When I set the Excel Web Access -web part to show my workbook, I get the following error:
    "We're sorry. We can't open the workbook in the browser because it uses these unsupported features: • PivotTable reports that are set to refresh
    when the item in a report filter changes, or external data ranges (also called query tables)
    that use parameters"
    Is this really true???!??
    If I have understood correctly, this has been an issue since the dawn of SharePoints Excel web services.
    Does Microsoft really in this age of big data assume that all the SQL queries should be unfiltered or static?
    My table has over 3M rows, so it is not possible to bring the whole dataset into excel and filter there. I'll have to say to the customer that we need to build a reporting table into which we'll aggregate the data first rather than querying the necessary
    information...

    Hi,
    Do you mean that you have Office 2007 and Office 2010 both installed in you computer?
    Based on my test, I copy a Access 2010 database into a computer only installed Offic 2007, then using Excel 2007 to import Access database data, no error occurred.
    So double click the Access database to see whether the databased is opened with Access 2007 or Access 2010. If it is opened with Access 2010, then try to save it as Access 2007 to
    check the issue.
    Jaynet Zhang
    TechNet Community Support

  • Omniportlet problems using web page as data source

    When trying to set up an omniportlet using a web page as a data source
    I get as far as defining the sectioning and scraping parts of the web clipping process.
    When going on to the "filter" step of the process I always get an error message like:
    Error
    Failed to open specified URL. Check the following:
    is the URL is active; is there a valid proxy setting or,
    if HTTP authentication is required, check user name and password.
    [http://oslap03.agra.int:7777/portalTools/webClipping/webData/omniPortlet/wcserver/jsp/show.jsp?_orawcs_providerId=39337338&_orawcs_portletId=1&_orawcs_p
    ortletInstanceId=33731_OMNIPORTLET_39337338&_orawcs_userI
    d=-&_orawcs_responseType=rowsetRow]
    We are not using proxy servers for accessing external web pages in other cases
    (so I wouldn't think we needed to now either), and this even happens for web
    pages residing within our own network.
    Any tips are much appreciated.

    Please provide support for the above request.
    It appears that Oracle 10g reports doesn't support Web Service as pluggable data source. Is this option is available in Oracle 11g Reports or Oracle Discoverer Or OBIEE?

  • Problem accessing clicksoft webservice in SAP System

    Hi All,
    We are currently integrating SAP system with Clicksoft. For that, we have received WSDL file from Clicksoft and we are trying to create consumer proxy in SAP system.
    But, getting error " Attribute "Transport" in <SOAPbind:binding> has incorrect value.
    Regards,
    Sagarika

    Hi ,
    As this forum is for SharePoint and this question is about third party, I changed its type to discussion.
    Thanks,
    Wendy Li
    TechNet Community Support

  • Problem in Obiee 11g when using Essbase as a data source.

    Hi,
    I imported Essbase objects into RPD. I would like to build an report analyzing by "City" (e.g. HK) and "Channel" (e.g. Bar, Restaurant). However, this dimension combined as one dimension in Essbase. Is there any methods to separate one dimension into two in RPD? Or, is there any trick can I used to complete this task?
    Btw, I have tried to duplicate the whole set of Essbase objects in RPD. Then, join the copy to the original object by using the dimension key in both object. For example, "Customer" in original object is joining to "Customer" in copied object. However, an error prompted out when I run the report by dragging the dimension and a "Fact" measure into it.
    The error message as follow:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 42015] Cannot function ship the following expression: AggrExternal(D901.c1 by [ D902.c1, D902.c2] ). (HY000)
    Is there any method to join an external table to Essbase object in RPD? For example, external table contain (Code, Description, Postal Code) and Essbase table contain only (Code, Description). How can I use the "Postal Code" to a report as well?

    It appears that I can view in Excel through the RPD when I am accessing the RPD in offline mode. If I try to access through online mode it just says "Connection Failed".
    I also tried viewing the data through Answers but received the following error:
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 16001] ODBC error state: IM006 code: 0 message: [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed. [nQSError: 16001] ODBC error state: S1000 code: -1022 message: [Microsoft][ODBC Excel Driver] Your network access was interrupted. To continue, close the database, and then open it again.. (HY000)
    SQL Issued: SELECT 0 s_0, "XLS-GBB"."FACT_F!_FACT"."Measure" s_1 FROM "XLS-GBB"
    Does the file have to reside someplace special?

  • Problem in 10.1.3 with a databse connection obtained from a data source

    In my jdev 10.1.2 project, I use the following code to pass a Java array to an Oracle stored procedure. It works fine in 10.1.2, but throws an exception when I tried a trial migration of my project to 10.1.3. It seems the connection is of type TC4Connection in 10.1.3, which differs from the 10.1.2 type. Does this connection not implement the correct interface, or is there a version problem?
    public Long updateChecklistByArray(Double appId, String [] naVals,
    String [] okVals, String userId) {
    Long valid = new Long("1");
    Connection conn =null;
    DataSource dataSource = null;
    try {
    Context initialContext = new InitialContext();
    dataSource = (DataSource)initialContext.lookup("jdbc/ApisDS");
    conn = dataSource.getConnection();
    ArrayDescriptor ad = ArrayDescriptor.createDescriptor("FLAG_ARRAY",
    conn);
    ARRAY naArray = new ARRAY(ad, conn, naVals);
    ARRAY okArray = new ARRAY(ad, conn, okVals);
    String stm = "BEGIN UPDATE_CHECKLIST_BY_ARRAY"
    + "(?, ?, ?, ?, ?); END;";
    OracleCallableStatement ps = (OracleCallableStatement) conn
    .prepareCall(stm);
    ps.setDouble(1, appId.doubleValue());
    ps.setArray(2, naArray);
    ps.setArray(3, okArray);
    ps.setString(4, userId);
    ps.registerOutParameter(5, Types.INTEGER, 0);
    ps.execute();
    int i = ps.getInt(5);
    valid = new Long(i);
    conn.commit();
    conn.close();
    } catch (Exception e) {
    logger.error(e);
    return valid;
    }

    The two query options seem to be incompatible, I'm not certain which is correct, perhaps an exception should be thrown. I guess your desire to have the Session cache refreshed, but anything already registered in the UnitOfWork not to be refreshed makes sense, so perhaps it is the correct option.
    Please log your issue with Oracle technical support if you wish to have a fix for the issue.
    As a workaround, you could execute the refresh query against the Session instead of the UnitOfWork, and then register the resulting objects in the UnitOfWork. This will ensure that changes are not reverted in your UnitOfWork objects.
    i.e.
    List objects = (List)unitOfWork.getParent().executeQuery(query);
    List registeredObjects = unitOfWork.registerAllObjects(objects);

  • There was a problem sending the command to the program when opening Microsoft Project 2010 files

    When opening MS Project 2010 files from the file and print server, I receive "There was a problem sending the command to the program."  Copy the same file to my local drive and the file opens fine.  This can be repeated by several other
    users.  Created a simple project file and once the size hit 1 MB, the error appeared.  The error appears on all files over 1 MB.
    I am a domain admin, so it is not a rights issue.  This does not seem to be a network latency issue, the file copies extremely fast.
    Any ideas?

    This message appears to be caused by Windows Explorer trying to send old-fashioned DDE messages to the Application.
    Since MS Project has no "Ignore DDE messages" setting you might want to go change the compatibility settings for WinProj.EXE (and any shortcut to it) to Windows 7 or greater.  Hopefully then Windows Explorer will stop trying to send DDE messages.
    Another possible culprit is older versions of the WinZip explorer extensions - I would disable them as well.
    Good luck,
       James.
    James Boman - http://www.boman.biz Software Consultant for IPMO - http://www.ipmo.com.au

  • Java + Access dbase - system DSN?

    Hi, I have been developing in ASP for the last year, and one of the luxuries it has given me is the ability to open MS Access databases without needing a system DSN (use a file dsn instead).
    Question: Is there a way to connect to an access database using a file dsn (without having to register the dbase in the dbase system) using JAVA??
    Thanks in advance, Cel

    Has nobody done this before??
    any info would be grande`

  • Report Designer odbc connection string for data source using a parameter

    I am using stand alone report designer 3 for the present and have a question/problem regarding the odbc connection string for MySQL when setting up the data-source
    I need to be able to enter a parameter which is the database name i.e. BOE-201401 or say BOE-201312 etc  from a list of databases the user can choose from.
    at present the odbc connection string points to BOE-201402
    the connection string is at present  Dsn=Development Server for MYsql;description=MYSQL;server=ldndw01;database=BOE-201402;port=3306
    my parameter has the name BOE_DATABASE
    and in an expression it is  as such
    =Parameters!BOE_DATABASE.Value
    I want to point the datasource for the report to the parameter value before the user sees the report.

    Hi Leslie,
    Based on your description, we want to design a report with a dynamic DataSource connection string. There are the basic steps below for your reference:
    Create report with static database.
    Change data source to report parameter.
    Send new database connection string as a report parameter. 
    More detail information, please refer to the following blog: Dynamic Database in SSRS 2008.
    http://haseebmukhtar.wordpress.com/2011/11/09/dynamic-database-in-ssrs-2008/
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

Maybe you are looking for

  • Can someone please help me decide on a new plan?

    I'm currently on BT Total Broadband Option 1. I'm currently out of contract.  The plan itself is £13.83 but I'm constantly going over my 10GB usage allowance so seeing additional fees of £5.30-£10.60 per month, I need a plan with higher usage allowan

  • Change in delivery quantity for batch managed items.

    30.09.2010 Hi friends, We have activated batch management. During delivery after the batch is determined and if i want to change the delivery quantity say for example from 50 to 30 then first i have to go and adjust the quantity in the batches to toa

  • Removing Mailbox DBs, while keeping all AD Exchange attributes intact?

    So I have migrated my groupware platform from Exch2010sp1 to Google Apps (sorry, MS, but if you gave 365 away for free to 501c3's I would have considered it). I am using Google's Google Apps Directory Sync (GADS)to populate GApps, and intend to maint

  • Trouble syncing iPod after initial connection

    We just purchased a 5th gen iPod, and we're having some trouble getting it to sync with our Mac mini Core Duo. When we connect it via the included USB cable, it will appear on the desktop, trigger iTunes to start up, and perform a sync. However, the

  • How can I get Firefox to autocomplete my username without my password?

    I need to enter a secure website with a password. I just want to enter the first letter of my username so it can autocomplete without my password showing up.