ODBC error using VISIO: ora-0911

I am trying to connect to an oracle 8i db using Visio Enterprise for Microsoft Windows 5.0. During the re-egineer option I use the odbc connection I have defined for the db I am trying to reach and receive the following errors.
"ODBC Driver Error:State:S1000,Native:911,Origin[Oracle][ODBC][Ora] ORA-0911:invalid character"
and
"ODBC Driver Error:State:S1010,Native:0,Origin[Microsoft][ODBC Manager] Function Sequence Error"
The oracle odbc driver I have loaded is 8.01.6200.
ANY Help would be greatly appreciated.

You may want to try updating the Driver Manager, part of the MDAC (Microsoft Data Access Components). <http://www.microsoft.com/data>. The 8.1.6.2 driver requires the 2.5x MDAC.
Justin

Similar Messages

  • Datetime field overflow ODBC error using EIS 11.1.2.2

    Hi
    I have EPM 11.1.2.2 installed on Windows 7 64bit. I am using EIS to create a Essbase cube. The installation comes with DataDirect 6.1 Oracle Wire Protocol ODBC driver which I have used to create a DSN for the metadata catalog (driver - C:\Oracle\Middleware\EPMSystem11R1\Common\ODBC-64\Merant\6.1\Drivers\ARORA25.dll). I created the OLAP model successfully but while saving the OLAP meta outline I get an error:
    +Error -28616: ODBC Error [DataDirect][ODBC Oracle Wire Protocol driver] Datetime field overflow. Error in parameter 5.+
    Any idea how to get rid of this error? Any workarounds?
    Regards,
    Vinay

    Vinay,
    Set the connection option "TimestampTruncationBehavior" to 1. This should be placed either in the connection string, the data source listed in the odbc.ini file (for UNIX), or in the data source listed in the registry (Windows)".
    Hope it helps....
    KosuruS

  • ODBC error using ORACLE MERANT DRIVER

    Hi,
    OS-windows 7 64bit
    Oracle Database 11g-64 bit
    Oracle Merant Driver 32 is installed(SysWOW64) when install DAC. so can't connect using Oracle merant driver 32 with Oracle Database 64bit. it's showing the below error.
    How can connect Oracle Merant Driver 32 bit with Oracle database 64 bit. kindly check how to resolve this.
    Error:
    Specified driver could not be loaded due to system error 193:
    \DataDirectODBC\seor820.dll)

    You may also try Oracle's odbc drivers available free from OTN
    see also http://support.microsoft.com/support/kb/articles/Q159/6/57.asp
    Oracle procedure is:
    CREATE OR REPLACE PROCEDURE test(
    a OUT integer,
    b out integer)
    AS
    BEGIN
    a:=100;
    b:=200;
    END;
    I have verified output values with oracle odbc 8.1.6 and OLEDB 8.1.6
    Turloch

  • ORA-0911 Errors in SQL Worksheet

    Is anyone else getting ORA-0911 errors in the Worksheet when they press F9? It is, of course, not consistent or easily repeatable, but seems to occur when I've got more than about three SQL statements in the worksheet and just typed another at the end.
    It's not a problem with my SQL, because I can cut and then paste the statement elsewhere in the worksheet and F9 will work fine. Of course when I then cut and paste it back to the bottom it carries on working as well.
    I'm trying to figure out exactly when this happens but of course the behaviour isn't consistent enough to narrow it down. I'm hoping that other people are also seeing this error message a lot and that there is either a known problem or that we can collectively figure out what is going on.

    The specific error must be in one of the earlier threads that was talking about this problem, but when I have problem with SQL Worksheet not identifying the current statement out of multiple statements, it is almost always the ORA-911.
    If the statement runs fine when you select the specific text, then I would say that the problem is the SQL Worksheet statement selection rather than anything to do with the DB version.
    As an example - I am connecting to 9.2.0.5 and if my SQL Worksheet contains:
    select dummy
    from dual
    where dummy like '%'
    select dummy
    from dual
    where dummy not like '%'
    If I use F9 anywhere in the SQL Worksheet, I get the ORA-911 error.
    However if I select the the text of either statement, it runs fine (first returning a record and second not).
    If I delete the two where clauses, I don't get the ORA-911 error, even if I don't select the statement text explicitly.

  • ORA-00601 Error using JDBC, Oracle 8i on Linux

    Hello,
    Spatial is considering using Oracle as its database platform. I was assigned
    the task of benchmarking the two platforms. So, I downloaded the latest copy
    of Oracle for Linux, version 8.1.6.1.0 ( 8i Enterprise Edition Release 2 ).
    I'm using RedHat 6.2, with a 2.2.14-5.0smp kernel. I ran the installer, set
    up the databases, and everything seemed to be running quite nicely. I copied
    a table and its data from mysql to Oracle, and wrote a java program to
    benchmark the two. This java program takes command line arguments, the first
    one being the connection URL, the second being the number of threads to
    start, the third being the number of operations to complete for each thread.
    So, if you pass it connection 35 35, it will open 35 threads, and each
    thread will then execute 35 selects, inserts, and updates. These are
    hard-coded queries, but they mimic the functionality currently in
    production.
    Oracle bombs on the update. I turned tracing on, and tried it again, with
    the same result. Here's an excerpt from one of the trace files:
    *** SESSION ID:(4.1) 2000-06-21 16:36:48.937
    kvotenlg: epc_collect failed. EPC error: -1073751468.
    CDF: /u01/app/oracle/product/8.1.6/otrace/admin/cdf/styorap0
    FDF: /u01/app/oracle/product/8.1.6/otrace/admin/fdf/oracled.fdf
    kvotenlg: epc_collect failed. ctx:368.
    I was not able to find any information regarding this error. However, this
    message ( or one very similar ) appeared in every trace file. I get the
    following at the end of the pmon_xxxx.trc file:
    Load Indicator not supported by OS !
    *** 2000-06-21 17:42:19.122
    error 601 detected in background process
    And, the following in the alert_sid.log file:
    Wed Jun 21 17:42:19 2000
    PMON: terminating instance due to error 601
    Instance terminated by PMON, pid = 3797
    I made the assumption that this error was actually ORA-00601, and took a
    peek on the internet for relavent information. The canned error message is
    "PMON process runs into lock conflict trying to recovery processes". I found
    someone who had a similar problem, who suggested setting mts_max_dispatchers
    in the initsid.ora file to 1. However, this did not work.
    Basically, when Oracle crashes, the java program is trying to update one
    column in 1225 rows, 35 times, for 35 threads. The java exception is below.
    java.sql.SQLException: No more data to read from socket
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java)
    at oracle.jdbc.dbaccess.DBError.check_error(DBError.java)
    at oracle.jdbc.ttc7.MAREngine.unmarshalUB1(MAREngine.java)
    at oracle.jdbc.ttc7.MAREngine.unmarshalSB1(MAREngine.java)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java)
    at
    oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java)
    at
    oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteWithBatch(OracleStatement.java)
    at
    oracle.jdbc.driver.OracleStatement.doExecute(OracleStatement.java)
    at
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java
    at
    oracle.jdbc.driver.OracleStatement.executeUpdate(OracleStatement.java)
    at ned.util.database.DBHammerThread.run(DBHammerThread.java:78)
    Has anyone seen this kind of behavior before? Is this merely a
    misconfiguration on my part? Help! :)
    -ned

    Sorry for the long delay in reply. I was using the thin client driver. However, when I switched to the oci8 driver, not only did I observe a 300% increase in speed, but this bizarre occurrence disappeared. I did find one issue with the oci8 driver, as follows.
    In this thread program, if I created a connection in the main program before any of the threads were instantiated, and when the first thread attempted to create a connection, it would produce a segmentation fault. This behavior was very easy to replicate, and it did not matter whether or not I close the original connection. This problem was circumvented by moving the code in the "main" program to create its connection after the child threads had created theirs.

  • Oracle ODBC error when inserting "end" or "begin"

    I think I may have found a bug in the Oracle ODBC driver....
    I am using version 8.01.73.00 of the Oracle ODBC driver, and my VB application is trying to insert a record into a table using ADO. All works fine, until the user tries to enter the word "end", or "begin" into any of the text (CLOB) fields. The following code shows how I am doing an insert:
    Dim cmd As ADODB.Command
    Set cmd = New ADODB.Command
    cmd.ActiveConnection = "DSN=Envoy;uid=Envoy;pwd=significance;"
    cmd.CommandText = "Insert into Mon_Reading (Creation_User, Creation_Date, Reading_Date, Param_ID, Mon_ID, Value, ApplicableYN, Site_ID, Prev_MEter_Value, MeterResetYN, UOM_ID, LimitsApplicableYN, Lower, Upper, Limit_UOM_ID, ApprovedYN, Comments ) Values ('Matttt', '01-jan-2002', '01-jan-2003', 1, 1, 1., 'Y', 1, 0, 'N', 1, 'N', 0, 0, 0, 'Y', ' end ');"
    cmd.CommandType = adCmdText
    cmd.Execute , , adExecuteNoRecords
    As you can see, the text " end " is being added to the comments field, a CLOB data field. When executed, this causes an Oracle ORA-0911 error (invalid character), and the insert fails.
    Heres the weird thing - if you change the word "end" to anything else apart from "begin" - it will work!!! Also, it only fails if you wrap the "end" in spaces?!!?!! Users that reported this were entering comments like "this is the end of June" - this would have caused the error. If you copy teh failed SQL and paste it into SQLPlus, it executes OK.
    I can only presume this is an Oracle bug. Anyone else have an ideas? What can I do as a workaround?

    First thought would be to grab the updated 8.1.7.x ODBC driver (8.1.7.7 IIRC). Perhaps this problem has already been solved.
    Justin

  • ODBC error checking in a data model

    At my client we're using PD 16.5.0 build 3982, and we're trying to check in a LDM that was originally generated from a PDM. When we try and check the LDM in to the repository, we get an ODBC error:
    ODBC driver for Oracle
    ORA-12899: value too large for column "PMTEXT"."TDAT" (actual: 2002, maximum: 2000)
    SQLSTATE = NA000
    I have an old (PD 16.1) PDM for the repository, which shows the column as having a length of 30,000, not 2,000. On my own laptop, the 16.5.3 (Sybase SQL Anywhere) repository also shows the column as varchar(30,000). However, the client's 16.5.0 Oracle database shows the column as varchar2(2000).
    Has anyone else had this problem with an Oracle repository?

    Check your settings for MaxBytePerChar  in your ODBC connection details. If you have a  multi byte database this helps to correctly store chars that are represented by more than 1 byte, e.g. the EUR sign in a comment field.

  • OCA - ODBC - Error/BUG

    Hi everybody,
    Could anybody help me on this :
    I encountered an error message when I use SQL-Plus 8.0.6 with OCA 8.0.6 and RSF 8.0.6, it said : ORA-00022 : invalid session id; access denied.
    I heard that the solution is to downgrade the RSF to 8.0.5, yes it really works. But the problem is RSF 8.0.5 resides in default_home directory, but the Form 6i that i use resides in oracle_home directory.
    Could anybody help me to solve the problem, since 8.0.6 resides in oracle_home and 8.0.5 resides in default_home.
    Thank you very much for the kind attention, greatly appreciate for the help.
    Best regards,
    Tonny Loekito
    null

    Here are few Metalinks that support the Error
    DOC ID: 159964.1
    DOC ID: 299604.1
    Bug No: 779714
    Sometimes it will be a ORA-1013 error!
    Re: ORA Error 1013 - Problem Connecting to Oracle Via ODBC
    Follow up with the above forum - hopefully it will solve your issue

  • [nQSError: 16001] ODBC error state: S1000 code: Timeout

    Hi, I am getting the following error when I go to make a new subject area
    +++Administrator:2b0000:2b0004:----2010/02/12 18:48:02
    -------------------- Query Status: Query Failed: [nQSError: 16001] ODBC error state: S1000 code: 12170 message: [Oracle][ODBC][Ora]ORA-12170: TNS:Connect timeout occurred.
    I am running OBIEE on Windows connecting to my Linux box
    I have the ODBC DSN Setup and tested
    Also I am able to connect from BI Administration and update row counts
    Help is appreciated

    here is my self written startBI.sh on Oracle Linux64
    I am having an EBS R12 Instance for my database
    #!/bin/sh
    export ORACLE_HOME=/oracle/VIS/db/tech_st/11.1.0
    LD_LIBRARY_PATH="/oracle/OracleBI/server/Bin:/oracle/VIS/db/tech_st/11.1.0/lib32"
    export LD_LIBRARY_PATH
    PATH=$PATH:/oracle/OracleBI/server/Bin
    export PATH
    TNS_ADMIN=/oracle/VIS/db/tech_st/11.1.0/network/admin/VIS_sgt
    export TNS_ADMIN
    cd /oracle/OracleBI/setup
    ./run-saw.sh start
    ./run-sa.sh start
    echo $PATH
    echo $LD_LIBRARY_PATH
    echo $ORACLE_HOME
    cd /oracle/OracleBI/oc4j_bi/bin
    . ./oc4j -start
    cd $home
    Another landmine is that you may need to use lib32
    The gateway libraries in NSConfig.ini may point to 10g libraries.
    This is OK if you have 10g but for 11g you may have to relink libclntsh.so.10.1
    Hope this helps
    All these roadblocks make you dig more, google, read docs experiment and try work arounds
    Though this is frustrating we get to discover more about the engine.

  • Odbc error in answer

    Hi All,
    I am unable to solve this issue for a week now.I am using oracle 11.2.0 client for 64 bit . I could import the tables and view data from rpd.The problem comes when I run the report from answer.I get ODBC error. I am accessing the obiee server and oracle client through remote desktop connection from my local machine and the database is located in different server. The obiee configuration is fine since I am able to view records from rpd(Obiee Admin).
    When I run the report from Obiee 11g answer , I get the following error:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 17003] Oracle gateway error: OCIEnvNlsCreate or OCIEnvInit failed to initialize environment. Please check your Oracle Client installation and make sure the correct version of OCI libraries are in the library path. (HY000)
    I did copy tnsnames.ora to {Oracle_BI1}\network\admin directory & {oracle_common}\network\admin directory and Set up TNS_ADMIN to C:\OracleBI\Oracle_BI1\network\admin .I have checked the environment variables and it is correct. This issue is killing me. I have reinstalled oracle client too. Is it the obiee issue or any firewall or it is because I am using remote desktop??
    Thanks,
    Virat

    ORACLE_HOME =C:/app/us1/product/11.2.0/client_1
    PATH=C:/app/us1/product/11.2.0/client_1/bin
    TNS_ADMIN=C:/app/us1/product/11.2.0/client_1/network/admin
    CLASSPATH do not have the path
    The result of TNSPINg
    TNS Ping Utility for 64-bit Windows: Version 11.2.0.1.0 - Production on 16-AUG-2
    012 16:48:09
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    C:\OracleClient11\product\11.2.0\client_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)
    (HOST = 192.168.10.74)(PORT = 1521))) (CONNECT_DATA = (SID = nadev)))
    OK (80 msec)
    I used (DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.10.74)(PORT=1521)))(CONNECT_DATA=(SID=nadev))) in connectionpool
    How to create soft link (ln -s) ? I am not able to use this command cd /u10/app/orcladmin/oracle/OracleBI/server/Bin
    ln -s $ORACLE_HOME/lib32/libclntsh.so.10.1 libclntsh.so.10.1
    Thanks,
    Virat

  • ODBC Error in connect string?

    I am running 8i 8.1.6 oracle, forms 6i, and am trying to connect to a AS400 DB2 database. I have the ODBC driver for the AS400 setup properly.
    When I try to connect in Forms 6i or SQL*Plus with the connect string odbc:datasource_name (ie. odbc:AS400) I get an error ORA-03121 error saying "No interface driver connected - function not performed".
    Any ideas? I have searched all over reguarding this error but none are specific to this. Is there something specific you need to run outside of a typical database setup to get ODBC going?
    This also happens when I specify the Oracle8i ODBC driver, or any ODBC for that matter. I am able to access the ODBC data sources in my other programming environments, ie. VC++6, and Borland Builder.
    Net8 is up and running fine as well....
    Thanks in advance,
    Jeff
    null

    First, thank you very much for the response. Reguarding the SQL*plus connection, I thought is was possible to use oracle tools (like SQL*plus and Forms) to open odbc connections using other ODBC drivers (for example Client Access ODBC driver for the AS400).
    In fact, I know this is true because I actually did it with a test DB using 8.1.5. For example, I would open SQL*plus in Win98 and enter in a valid user name and pword for the AS400 and the odbc connect string. Then I was able to run ad hoc queries against the AS400 data. But now that I upgraded to 8.1.6 and have not used ODBC in a while, I cannot remember the connect string and am getting this error.
    I can actually connect to multiple ODBC data sources at the same time in my C++ environment, Oracle and AS400, and copy tables back and forth. This can also be accomplished in Excel and other programs. Even the ODBC test utility that ships with 8.1.6 lets me connect to the AS400 and run queries against it. This utility however just lets you pick a datasource and doen't require a connect string.
    My ultimate goal here is to be able to use the Oracle tools in the same fashion. Or just use PL/SQL to connect to an ODBC data souce other than Oracle because I want to set up timed data transfer through OEM.
    When I type in the connect string "odbc:data_source_name" it gives me the ora-03121 error no matter what I put in for the data source name, even if I leave the data source blank. Is my syntax incorrect? Or do I have to set something up to access ODBC drivers through the Oracle tools. I don't remeber have to before.
    Thanks very much for your help on this.
    Jeff

  • Trap odbc errors

    Hi!
    I have to use MS-Access2000 as a frontend for an oracle database. And I dont want to see these ORA-xxxx Popups if an error occures.
    So I use something like the following in access (it should work with sql-server....):
    Private Sub Form_Error(DataErr As Integer, Response As Integer)
    Dim errX As DAO.Error
    If Errors.Count > 1 Then
    For Each errX In DAO.Errors
    Debug.Print "ODBC Error"
    Debug.Print errX.Number
    Debug.Print errX.Description
    Next errX
    end if
    End Sub
    But I always get Errors.Count=0 :-(
    Oracle is version 9.
    What is wrong ?
    What can I do, to get the oracle-error-number - or better the full error-description from the popup?
    Thanks,
    Detlev

    I'm not an expert VB programmer, but have you shown us where/ how Errors is created and populated?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • REP-1401: Fatal PL/SQL error occurred. ORA-01403: no data found

    Hi guys,
    I am getting error 'REP-1401: Fatal PL/SQL error occurred. ORA-01403: no data found ' when run the report
    and i m also use formula column in my report.
    can any body help me why it's coming.
    following code is used in formula column plz check and verify:
    function CF_3Formula return Char is
    T1 VARCHAR2(100);
    begin
    SELECT
         VAT_REG_NO INTO T1
    FROM
         JA_IN_HR_ORGANIZATION_UNITS JIHOU,
         HR_LOCATIONS HL--,
         --MTL_TXN_REQUEST_HEADERS MTLH
    WHERE
    JIHOU.ORGANIZATION_ID=HL.INVENTORY_ORGANIZATION_ID AND
    JIHOU.LOCATION_ID=HL.LOCATION_ID AND
    --Jihou.ORGANIZATION_ID = Mtlh.Organization_Id AND
    -- Hl.INVENTORY_ORGANIZATION_ID =Mtlh.Organization_Id AND
    -- MTLH.ATTRIBUTE10=SUBSTR(HL.LOCATION_CODE,1,3) AND
    SUBSTR(HL.LOCATION_CODE,1,3)= :TO_ORG1 ;
    RETURN (T1);
    end;
    plz help me out.

    Hi;
    What is EBS version? Is it custom report or not?
    See below which is mention similar errors
    Autoinvoice Error: ORA-1403: no data found [ID 1209403.1]
    APXIIMPT - Payable Open Interface Import Fails on "REP-1401: 'cf_source_nameformula': Fatal PL/SQL error occurred. ORA-01403: no data found" [ID 222058.1]
    Regard
    Helios

  • REP-1401: 'cf_10formula': Fatal PL/SQL error occurred. ORA-06502: PL/SQL: numeric or value error

    Hi Team,
    I am running one conc programme.
    After running I am getting below  error. I checked the issue on metalink  and other, seems that it is an size related issue. I have increased the size of formula columns and placeholdder too.
    But still getting issue.
    My requirement is to get comma seperated values using SQL query itself. Neither i wanted to create layout of the report , since it is a XML publisher report and nor  I am including it on RTF template.
    I want the CF_10 formula column to be populated with comma seperated values.
    MSG-00187: From Date 01-Sep-2014
    REP-1401: 'cf_10formula': Fatal PL/SQL error occurred.
    ORA-06502: PL/SQL: numeric or value error
    And Here is my code for CF_10
    function CF_10Formula return Number is
    begin
       SELECT NVL(TO_CHAR(sum(Amount),'99,99,99,999'),0) into :CP_5 --NVL(ROUND(sum(Amount)),0) into :CP_5
    --  xxhw_Coll_cat(category)     "Intercat  Catg"
    FROM hhxw_Region_col_v
    WHERE Category IN ('Intercompany - CATV')
    AND trunc(gl_date) BETWEEN TO_DATE(:P_FROM_DATE, 'DD/MM/RRRR') AND TO_DATE(:P_TO_DATE, 'DD/MM/RRRR');
    RETURN ROUND(:CP_5);
    end;
    Anyone please suggest me.
    Regards,
    Sachin

    Hi,
    1)Why are you selecting the value into a report item? Select into a local variable and return that
    RETURN :CP_5 --> This one!!
    2)And you should avoid applying functions to DB columns in where clauses wherever possible, so oracle can use indexes on them if applicable:
    AND gl_date >= To_date(:P_FROM_DATE, 'DD/MM/RRRR')
    AND gl_date < To_date( :P_TO_DATE, 'DD/MM/RRRR') + 1;
    I think you are taking 2 column in the Layout CF_10 and CP_5 right? if so, then use below Query.
    FUNCTION cf_10formula
      RETURN NUMBER
    IS
      v_amount NUMBER:null;
    IS
    BEGIN
      BEGIN
        SELECT nvl(round(SUM(amount)), 0)
        INTO   v_amount --> Retruns the value for CF_10 column
        FROM   hhxw_region_col_v
        WHERE  category IN ( 'Intercompany - CATV' )
        AND    gl_date >= to_date(:P_FROM_DATE, 'DD/MM/RRRR')
        AND    gl_date < to_date( :P_TO_DATE, 'DD/MM/RRRR') + 1;
        :CP_5 := nvl(trunc(v_amount),0); --> Retruns the value for CP_5 column
      EXCEPTION
      WHEN OTHERS THEN
        v_amount := 0;
        srw.message(1003,'Error in Getting  :' ||p_from_date);
      END;
    END;
    And
    If you've got a number function returning into a number field then all you should need to do to make the comma appear is to change the number format mask in field.
    From 40000 to 40,000

  • Powerpivot Report 2010 - OLE DB or ODBC error: Query timeout expired; HYT00

    0
    I have report already developed by someone in powerpivot 2010 and deployed to sharepoint in powerpivot gallery library. The data source for this report is SQL Server 2008 r2. I have set the refresh options in sharepoint to run after business hours during
    week end. When I check the refresh history it shows this error message "OLE DB or ODBC error: Query timeout expired; HYT00. An error occurred while processing the 'xxx' table. The current operation was cancelled because another operation in the
    transaction failed..
    I have tried to run the "Also refresh as soon as possible " just to check but same error message is shown.
    This is the detailed error message details:
    03/02/2014 21:06:55 03/02/2014 22:08:15 01:01:20 Failed
    OLE DB or ODBC error: Query timeout expired; HYT00. An error occurred while processing the 'xxx' table. The current operation was cancelled because another operation in the transaction failed
    Could anyone guide me on this issue? Truly appreciate your help in advance.

    Hi asritha,
    I would suggest you take a look at the following articles regarding how to configure PowerPivot data refresh in SharePoint Server:
    Configure and Use Stored Credentials for PowerPivot Data Refresh:
    http://technet.microsoft.com/en-us/library/ee210671(v=sql.105).aspx
    Configure and Use the PowerPivot Unattended Data Refresh Account:
    http://technet.microsoft.com/en-us/library/ff773327(v=sql.105).aspx
    Note: Please ensure that the account have sufficient permission access to your data source.
    In addition, please elaborate your PowerPivot data soure with more detail. If you are using SSAS cube, please try to increase "ExternalConnectionTimeout" property default value to see if this helps. Here is the similar thread for your reference,
    please see:
    http://social.technet.microsoft.com/Forums/en-US/35b26c06-9e6d-41e5-ae44-bfb1233510ac/ssas2008-ole-db-error-ole-db-or-odbc-error-query-timeout-expired-hyt00?forum=sqldatamining
    Regards,
    Elvis Long
    TechNet Community Support

Maybe you are looking for

  • Problem in reading XML contents

    Hi all, I have a problem in extracting a portion of the XML file. the XML is <x>      <y1></y1>      <y2>           <value1>One</value1>           <value2>Two</value2>           <value3>Three</value3>     </y2>      <y3></y3> </x>the code i have writ

  • Epson Print CD Program for Mac

    I have an imac and Epson Stylus Photo R200 printer that allows me to print onto DVDs using the "Epson Print CD" program that came with the printer. However when I print onto the cd it's to the right by an inch. I attempted to change the position in t

  • DVD plays perfectly on a computer BUT not on a DVD machine

    Good Evening all, Having spent the last four and a half hours trawling the internet for help on this, I can only hope someone out there can help. I have just delivered what I thought was a pretty decent dvd master (for commercial duplication) to a cl

  • Voice chat on imac

    Hi~~~my yahoo messenger voice chat has been cutting out and not sure why---is this a common thing with yahoo or is this maybe a imac issue ???

  • On log on my home page appears, goes into a loop, icons flash on and off and wont load

    HP Logo and the log on page load OK but when I log on to my home page it goes into a loop.  The screen and icons keep flashing as if the screen keeps reloading.  I cant do anything to stop it.