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

Similar Messages

  • Datetime field overflow / String data right truncation

    Hi All,
    Getting the follwing erros while working with timestamp for selecting from or inserting data into DB2 through WebSphere 6.1.
    I am passing values like this: 2006-05-02-21.57.26.744341.
    The queries run fine while executing through some SQL Frontend editor.
    [IBM][CLI Driver] CLI0114E Datetime field overflow. SQLSTATE=22008
    [IBM][CLI Driver] CLI0109E String data right truncation. SQLSTATE=22001
    Please let me know the problem.

    If you are trying to convert to a java.sql.Timestamp as part off the process of inserting into DB2 then Timestamp is derived from java.util.Date which holds the time in milli-seconds but you are providing a microseconds field.
    Could this be the problem?

  • 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

  • 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

  • Full load failed with  [Microsoft][ODBC SQL Server Driver]Datetime field

    Hi,
    we are doing a full load with RDBMS SQLServer.
    It failed due to the below error.
    [Microsoft][ODBC SQL Server Driver]Datetime field overflow. Can you please help
    thank you

    968651 wrote:
    Hi,
    we are doing a full load with RDBMS SQLServer.
    It failed due to the below error.
    [Microsoft][ODBC SQL Server Driver]Datetime field overflow. Can you please help
    thank youhttp://bit.ly/XUL950
    Thanks,
    Hussein

  • Need help for "Numeric field Overflow" error in excel 2003.

    Hello,
    a friend of mine have a problem exporting Business Objects 5.1.8 to excel 2003 (turning on windows 2000).
    Each time she want to export her reporting in excel format (.XLS), she obtain a "Numeric field Overflow (3349)" error.
    So, she export in .CSV format, but it's not easy to use for her following tasks.
    What could she do ?
    Does she do an "update" to newer version of B.O., or there are a solution at her problem ??
    Thanks in advance.
    Nicolas
    P.S.: I searched for solution on this forum, but found nothing.
    Edited by: Nicolas Kowarski on Sep 28, 2008 10:16 PM

    Hello Nicolas,
    Please post this query to the [Legacy Products|SAP BusinessObjects BI Legacy Products;  forum.
    That forum is dedicated to topics related to legacy products such as Business Objects Enterprise 5.x and 6.x.
    The forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Legacy Product queries remain in one place and thus can be easily searched in one place.
    Thanks a lot,
    Falk

  • Sum a DATETIME field

    Just noticed it isn't straight forward to SUM a DATETIME fields.
    I’ve used the following code to get the time, how do I convert the output back to a DATETIME field?
    declare @T table
    total_hours_worked datetime
    insert into @T values ('01:00:00')
    insert into @T values ('01:30:00')
    insert into @T values ('03:35:00')
    select *
    from @T
    select SUM((DATEPART(hh,total_hours_worked)*60)+DATEPART(mi,total_hours_worked)+(DATEPART(ss,total_hours_worked)/(60.0)))/60.0 as TotalHours from @T
    Thanks,

    I should have added the disclaimer that my solution would require total_hours_worked to be stored as either a float or a varchar to be used with the function I described above.   The completed functions would be similar to 
    CREATE FUNCTION dbo.TimeSpan_CreateFromString
    @pFormattedTimeSpan varchar(128) = null
    RETURNS float(53)
    with returns null on null input AS
    BEGIN
    declare @DayPortion int
    ,@HourPortion int
    ,@MinutePortion int
    ,@SecondPortion decimal(6,4)
    declare @l int
    declare @s2 varchar(128)
    DECLARE @Result float(53)
    select @s2=LTRIM(rtrim(@pFormattedTimeSpan))
    set @l = LEN(@s2)
    declare @i int
    if CHARINDEX('.',@s2,1) < CHARINDEX(':',@s2,1)
    begin
    set @i = CHARINDEX('.',@s2,1)
    select @DayPortion =
    case CHARINDEX('.',@s2)
    when 0 then 0
    else
    case ISNUMERIC(SUBSTRING(@s2,1,CHARINDEX('.',@s2)-1))
    when 1 then CAST(SUBSTRING(@s2,1,CHARINDEX('.',@s2)-1) as int)
    else 0
    end
    end;
    set @s2=ltrim(rtrim(SUBSTRING(@s2,@i+1,@l-(@i))))
    end
    else
    begin
    set @DayPortion=0
    end
    -- ** debug: select @i, @l, @s2
    --select CHARINDEX(':',@s2,1) [c1], CHARINDEX(':',@s2,CHARINDEX(':',@s2,1)+1) [c2], CHARINDEX(':',@s2,(CHARINDEX(':',@s2,CHARINDEX(':',@s2,1)+1))+1) [c3]
    set @i = CHARINDEX(':',@s2,1)
    select @HourPortion =
    case CHARINDEX(':',@s2,1)
    when 0 then 0
    else
    case ISNUMERIC(SUBSTRING(@s2,1,CHARINDEX(':',@s2,1)-1))
    when 1 then CAST(SUBSTRING(@s2,1,CHARINDEX(':',@s2,1)-1) AS int)
    else null
    end
    end
    set @s2=ltrim(rtrim(SUBSTRING(@s2,@i+1,@l-(@i))))
    -- ** debug: select @i, @l, @s2
    set @i = CHARINDEX(':',@s2,1)
    select @MinutePortion =
    case CHARINDEX(':',@s2,1)
    when 0 then 0
    else
    case ISNUMERIC(SUBSTRING(@s2,1,CHARINDEX(':',@s2,1)-1))
    when 1 then CAST(SUBSTRING(@s2,1,CHARINDEX(':',@s2,1)-1) AS int)
    else null
    end
    end
    set @s2=ltrim(rtrim(SUBSTRING(@s2,@i+1,@l-(@i))))
    -- ** debug: select @i, @l, @s2
    set @i = CHARINDEX(':',@s2,1)
    select @SecondPortion =
    case ISNUMERIC(@s2)
    when 0 then null
    else CAST(@s2 as decimal(6,4))
    end
    SELECT @Result = dbo.TimeSpan_CreateFromParts(@DayPortion,@HourPortion,@MinutePortion,@SecondPortion);
    RETURN @Result
    END
    GO
    I changed the function names to make them more consistent.

  • SharePoint Bug? Conflict Error when saving a Page with a "Required" DateTime field in the page layout

    Hello,
    I've just recently encountered a weird error / bug in SharePoint. Here is the scenario:
    - I have a custom column "Test Date" that is of DateTime field type. The field is configured as REQUIRED.
    - It is added to a custom Content Type "Test CT" that is based on a "Publishing Page" content type
    - I have created a Page Layout "Test PL" which is based on that particular content type.
    Now here is what happens:
    1. I try to create a page based on both that Content Type and Page Layout in the Pages Library. I manage to create it successfully.
    2. However, when I go to try and edit the page, fill-in the required values and try to save it using the PAGE TAB -> SAVE BUTTON, I get the below error/s. Note that this happens no matter what I choose in the drop-down menu for Save Button.
    "The file XXX has been modified by USER on DATE"
    But I know I am the ONLY user modifying the page. 
    If I try to save again it gives me options to whether Discard my Changes, Keep Editing, Overwrite Changes, or Merge.
    3. HOWEVER, if I use the Save button on the UPPER RIGHT corner of the screen (the shortcut). I am able to save successfully without any errors!
    The only thing I've tried that made it work was if I made the DateTime OPTIONAL. But I need it to be REQUIRED.
    Is there any workaround to this error / bug?
    Thanks

    I have some additional info but nothing really good. 
    If you click the Save in the left side of the Ribbon then it looks like that is when you get the message. If you click the Save in the top right corner you won't get the message. They must be calling different saving functions. 
    There really is no way around it other than making the field optional which probably removes some server side validation checks causing that message.
    We've chosen to remove that field from the page as I needed it required, then they can't publish the page until they go to the properties and set the article date. By removing the field from the page layout the message goes away.
    I hope MS will fix this at some point.
    -tom daly

  • EIS Error: ODBC Error driver's SQLAllochandle on SQL_HANDLE_ENV failed

    HI guys,
    I had Oracle 10g(Run time Client) installed, but to create a catalog i need to create an ODBC connection first so I went ahead and tried to do it but i didnt find the ODBC driver for 10g so I installed Oracle 11g(Run time Client) over 10g. Then, I created a ODBC DSN and tried to create OLAP catalog using the ODBC DSN but it says the following error.
    ODBC Error driver's SQLAllochandle on SQL_HANDLE_ENV failed
    I researched a bit and found that its an environment variable issue so uninstalled the Oracle 10g, now I've got only 11g but still the same error.
    When I test the connection while creating the DSN it says Connection Successfull, its only on EIS front I am getting this error
    Can any of you plz help me out of this error.
    Thanks!!!!
    Edited by: mjunaid on Oct 7, 2009 2:26 PM
    Edited by: mjunaid on Oct 7, 2009 2:27 PM

    Plz someone help me with this guys.
    It throws this error when i use Oracle 10g driver for ODBC. When i used an alternate odbc connection with MERANT for Oracle the EIS got stuck and the aplication doesn't respond.
    Edited by: mjunaid on Oct 8, 2009 8:28 AM

  • Error while adding user fields to user table using vb6.0

    Hi,
    I am adding a user tables using vb6.0 using DIAPI.
    I am able to add the user table successfully.
    I am getting the following error when i am adding the fields to the table.
    "The metadata object for this object cannot be updated, since it's ref count is bigger than 0."
    My code is as follows:
        oUserFieldsMD.TableName = TABLE_NAME_ITEM_LOCN
        oUserFieldsMD.Name = vTableFields(0, lCount)
        oUserFieldsMD.Description = vTableFields(1, lCount)
        oUserFieldsMD.Type = vTableFields(2, lCount)
        oUserFieldsMD.EditSize = CLng(vTableFields(3,lCount))
        lRetCode = oUserFieldsMD.Add
    This error does not come up when i try to add the field to my table using the vb sample provided by SAP.
    Your help will me much appreciated.
    Thanks.

    Hi Satish,
    The problem is that you added the table and the objetc that you used to add the table is not freed properly. You need to free the object and then the reference count to that table will be 0 - which will enable you to add the fields
    e.g
    Dim pUTables As SAPbobsCOM.UserTablesMD
    'Do your stuff
    Set pUTables = Nothing
    Dim pUFields As SAPbobsCOM.UserFieldsMD
    'Do your stuff
    Set pUFields = Nothing

  • Vendor evaluation Pricing error: Field overflow

    Hi All,
    I scheduled monthly batch job for vendor evaluation, unfortunately i'm getting Pricing error: Field overflow with Message no. V1802
    Ofcourse pricing is one of the criteria for my vendor evaluation, my worry is that this evaluation is being carried out for all the vendors in more than 25 POrg's.
    Can you please guide me to resolve this issue.
    Thanks in advance
    Pavan

    Hi Arminda:
    yes i'm getting same error "price error: field overflow" even now
    Jürgen:
    yes i am running batch job for this vendor evaluation process with the variant, my problem is that " Batch job is getting cancelled due to few errors in vendor evaluation process called 'price error: field overflow'..
    can you please any one of you tell me how to get ride of this error.
    thanks
    Pavan

  • DateTime field in forms using Adobe LiveCycle

    Hi Everyone,
    Iv'e created a custom report and has difficulty in formatting the DateTime fields where I wanted to show "EST" timezone but the report is setting it to "GMT". I'm not sure where to configure the timezone in Adobe LiveCycle when the data that I'm using already has an EST timezone. This is the pattern that I'm using date{MMM D, YYYY} time{h:MM:SS A Z}. Do you have any suggestions? Thanks.
    Regards,
    Rajiv

    one See this link,
    http://wiki.scn.sap.com/wiki/display/Basis/Timezone+changes+best+practices
    i hope this is usefull...
    thank you,
    Nithin

  • 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.

  • AppServ Control keeps mangling dateTime fields in WS tests

    I've deployed a web service that takes 2 dateTime fields as parameters. The format of the dateTime fields is xsd:dateTime (YYYY-MM-DDTHH:mm:ss.SSS).
    However, every time I type in a value in the datTime form field, and press the Invoke button, the AS Control mangles the date into a weird format like YYYY-MM-DDTHH:mm:ss.SSS+X.XXX, and the invoke fails with the error message 'Not all form values are valid."
    How do I bypass this bug? Without it, I can't test the web service using the AS Control.

    I'm testing a web service using the ASC.
    The ASC automatically creates a web page with a form in it to enter my test data.
    For a dateTime field, the "helpful" text next to the field's edit box says "xsd:dateTime (YYYY-MM-DDTHH:mm:ss.SSS)"
    So I type in 2007-07-10T23:12:10.000.
    Until this point, the color of the text in the field is "black" to indicate that the syntax is okay.
    I then change focus so that my cursor is in the next field. Or I press the Invoke button... same thing.
    The contents of the dateTime field automatically change to:
    2007-07-10T23:12:10.000-08.0:00
    and the color of the text in the field turns to "red" to indicate that the syntax is bad. And below the Invoke button I see a message that says:
    "Not all form values are valid."
    I try to change the value back to what it was, but the ASC insists on changing it back to the bad value each time I press Invoke or shift focus away from the dateTime field.

  • ALV Report - Field Overflow message in status Bar

    Hi
    I am trying to display ALV report , ALV report is displaying fine but on execution of report , an message in status bar is coming as "Field copy Number can not be totalled because of field overflow."
    Can anyone tell why such messgae is comming?
    Thanks,
    Debadatta

    Just a wild guess, treat the below as an example.
    Eg:
    assuming one field in the output is of length 2 type i.
    values: 20, 30, 60, 45.
    Totalling the values result as 155. but due to the length of the field as 2. We can encounter the overflow message.
      Considering the above example, manually total the values of your numerical columns and see if any of the column is execeeding the specified length.
    Regards
    Eswar
    Note: Reward if you find the info useful.

Maybe you are looking for