Digital or value error during the call to JTF_NOTE_PUB.

Hi all

I get this quite annoying error when you use OracleCallableStatement object to call the JTF_NOTE_PUB api.

The error is ORA-06502: PL/SQL: digital error or value.

If I replace the bind: 10 with some static, it works fine. My number is 962, which also is the value in the incidentId variable.

My code is as follows:
public void createWorkbenchNote(String userId, String respId, String respApplId, String note, String noteDetail, String incidentId) 
  {
    OracleCallableStatement cs = null;
    OADBTransaction txn = getOADBTransaction();
    
    try 
    {
      //Bind :1       = userId
      //Bind :2       = respId
      //Bind :3       = respApplId
      //Bind :4       = note
      //Bind :5       = noteDetail
      //Bind :10      = incidentId
      //Bind :7       = out l_return_status
      //Bind :8       = out l_msg_count
      //Bind :9       = out l_msg_data
      //Bind :6      = out new note id
    
      String sql = 
        "begin" +
        " FND_GLOBAL.APPS_INITIALIZE(:1, :2, :3);" +  
        " JTF_NOTES_PUB.CREATE_NOTE(  P_API_VERSION             => 1.0," +
        "                             P_INIT_MSG_LIST           => 'T'," +
        "                             P_COMMIT                  => 'T'," +
        "                             P_JTF_NOTE_ID             => null," +
        "                             P_VALIDATION_LEVEL        => 100," +
        "                             P_SOURCE_OBJECT_ID        => :10," +
        "                             P_SOURCE_OBJECT_CODE      => 'SR'," +
        "                             P_NOTES                   => :4," +
        "                             P_NOTES_DETAIL            => :5," +
        "                             P_ENTERED_BY              => :1," +
        "                             P_ENTERED_DATE            => TRUNC(sysdate)," +
        "                             P_LAST_UPDATE_DATE        => TRUNC(sysdate)," +
        "                             P_LAST_UPDATED_BY         => :1," +
        "                             P_CREATION_DATE           => TRUNC(sysdate)," +
        "                             P_CREATED_BY              => :1," +
        "                             P_LAST_UPDATE_LOGIN       => FND_GLOBAL.LOGIN_ID," +
        "                             P_NOTE_TYPE               => 'CS_TECH_HANDLER'," +
        "                             P_NOTE_STATUS             => 'I'," +
        "                             X_JTF_NOTE_ID             => :6," +
        "                             X_RETURN_STATUS           => :7," +
        "                             X_MSG_COUNT               => :8," +
        "                             X_MSG_DATA                => :9);" +
        "end;";

      String returnStatus = "";
      int returnMsgCount = 0;
      String returnMsgData = "";
      int returnNewNoteId = 0;

      Number newIncidentNumber = null;

      cs = (OracleCallableStatement)txn.createCallableStatement(sql, 1);

      cs.setInt(1, Integer.parseInt(userId));
      cs.setInt(2, Integer.parseInt(respId));
      cs.setInt(3, Integer.parseInt(respApplId));
      cs.setString(4, note);
      cs.setString(5, noteDetail);
      cs.setInt(10, Integer.parseInt(incidentId));
      cs.registerOutParameter(6, Types.NUMERIC);

      cs.registerOutParameter(7, Types.VARCHAR, 0, 1);
      cs.registerOutParameter(8, Types.NUMERIC);
      cs.registerOutParameter(9, Types.VARCHAR, 0, 2000);

      cs.execute();

      returnStatus = cs.getString(7);
      returnMsgCount = cs.getInt(8);
      returnMsgData = cs.getString(9);
      returnNewNoteId = cs.getInt(6);
      cs.close();

      if (!("S".equals(returnStatus))) 
      {
        throw new OAException(returnMsgData);
      }
    } catch (SQLException e) 
    {      
      String errorMessage = e.getMessage();
      throw new OAException(errorMessage);
    }
  }
Thank you in advance.

Kenneth

Kenneth

Instead of calling the API directly. I will suggest you to create a wrapper on API and call this wrapper.

Thank you
-Anil

Tags: Oracle Applications

Similar Questions

  • Digital or value error on the conversion of the clob to SMLType

    Hello
    What I'm trying to do is
    (i.) pass a value of xml string to the Oracle query variable
    II.) use this XML as part of a join in a query and retrieve the results.

    Approach:
    Input variable type is CLOB and then running the petition below:

    declare
    TestXML clob.
    Start
    textxml: = ' < table1 > < root > < none > 1 < /no > < / root > < root > < none > 2 < / > < non-root / > < / table1 > '

    Open: csr for
    Select tt.no
    de)
    Select xmltype.extract (value (a), ' root/no/text()').getstringval () than no.)
    table (xmlsequence (sys.xmltype(:testxml). Extract('/table1/root'))) a
    ) tt
    Tt.no group;
    end;

    Problem:
    The request as written above wake up a digital error or value to sys.xmltype (ORA-06502 & ORA-06512). But if I declare the testxml as varchar2; It works very well. Searched wrong, but without success.

    Ideas please!

    Other info: Oracle 10g, tool: PL/SQL Developer (Allround Automations).
    3 days on Oracle; on SQL Server 7 years... :) {so be a bit elaborate}
    Spacing of code does not work :( How do we code tags in this forum?

    Published by: rajeev.ranjan on May 11, 2009 07:43

    XMLTABLE usage example:

    SQL> ed
    Wrote file afiedt.buf
    
      1  create or replace procedure get_nos(p_rc OUT sys_refcursor) is
      2    testxml clob;
      3  begin
      4    testxml := '12';
      5    open p_rc for
      6    select tt.no
      7    from (
      8      select no
      9      from xmltable('/table1/root/no' passing xmltype(testxml) columns no number path '/no/text()')
     10      ) tt
     11    group by tt.no;
     12* end;
    SQL> /
    
    Procedure created.
    
    SQL> var rc refcursor
    SQL> exec get_nos(:rc);
    
    PL/SQL procedure successfully completed.
    
    SQL> print rc;
    
            NO
    ----------
             1
             2
    
    SQL>
    
  • ORA-06502: PL/SQL: digital or value error: character string buffer too small in the functions

    Hi all

    FUNCTION to CREATE or REPLACE fnc_two (p_in_job IN VARCHAR2)

    RETURN VARCHAR2

    AS

    CUR CURSOR

    IS

    SELECT ename

    WCP

    WHERE job = p_in_job;

    v_first_name emp.ename%TYPE;

    BEGIN

    FOR my heart IN rec

    LOOP

    IF v_first_name IS NULL

    THEN

    v_first_name: = rec.ename;

    ON THE OTHER

    v_first_name: = v_first_name | ',' || Rec.Ename;

    END IF;

    END LOOP;

    RETURN v_first_name;

    END;

    SQL > SELECT fnc_two ('CLERK')

    2 FROM dual;

    SELECT fnc_two ('CLERK')

    *

    ERROR on line 1:

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    ORA-06512: at the 'APPS '. FNC_TWO', line 17

    SQL > select distinct work of emp

    2.

    JOB

    ---------

    CLERK

    SELLER

    PRESIDENT

    MANAGER

    ANALYST

    v_first_name: = v_first_name | ',' || Rec.Ename;

    The above statement is the original error. The value has been assinged to v_first_name is larger than the computer can handle.

    Increase the size of the variable v_first_name to avoid the error example

    v_first_name varchar2 (100);

  • Error occurred during the call to a workflow finalizer

    Hi all

    I get the following error while closing a taskflow: -.

    [2012-04-30 T 15: 04:56.494 + 00:00] [WLS_BPM1] [NOTIFICATION] [DFW-40104] [oracle.dfw.incident] [tid: [ASSETS].] ' ExecuteThread: '4' for queue: ' weblogic.kernel.Def
    [(Self-adjusting) Ault'] [username: < WLS Kernel >] [ecid: 0000JS3m6pB3Z7Yh1pl3gj1Fa0zp0011C5, 0] [errid: 62] [detailLoc: / data/Institut/install/domains/bpm_domain/server]
    s/WLS_BPM1/adr/diag/BCI/bpm_domain/WLS_BPM1/incident/incdir_62] [probKey: BEA-101017 [HTTP] [oracle.adf.controller.activity.ActivityLogicException]] incident
    62, created in key problem "BEA-101017 [HTTP] [oracle.adf.controller.activity.ActivityLogicException].
    [2012-04-30 T 15: 07:03.498 + 00:00] [WLS_BPM1] [WARNING] [] [oracle.adfinternal.view.faces.lifecycle.LifecycleImpl] [tid: [ASSETS].] ExecuteThread: '2' to the queue:
    "weblogic.kernel.Default (self-adjusting)"] [username: < anonymous >] [ecid: 2286277d9ae449f9:278ffaa5:136e9fd66b1:-8000-000000000004e672, 0] [APP: BusinessProcessesEar]
    ADF_FACES - 60098:Faces life cycle receives exceptions that are unhandled in phase 5 INVOKE_APPLICATION []
    oracle.adf.controller.activity.ActivityLogicException: ADFC-06014: an exception has occurred during the call to a workflow finalizer.
    at oracle.adfinternal.controller.util.Utils.createAndLogActivityLogicException(Utils.java:230)
    at oracle.adfinternal.controller.activity.TaskFlowReturnActivityLogic.invokeFinalizer(TaskFlowReturnActivityLogic.java:697)
    at oracle.adfinternal.controller.activity.TaskFlowReturnActivityLogic.abandonTaskFlow(TaskFlowReturnActivityLogic.java:412)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.handleException(ControlFlowEngine.java:668)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:887)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:778)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:552)
    at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:148)
    at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:109)
    at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:78)
    at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:43)
    at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
    at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
    at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
    at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:788)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:306)

    Please indicate how to remove the error / using an exception handler, I can move to an error page.
    Please share a link to a tutorial to add an exception handler that will lead to an error page for errors.

    Kind regards
    Sam

    I was running into the same issue with from the human task taskflow, after removing the call #{invokeActionBean.invokeScript} finalizer, it worked well for me.

  • ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Hello

    I am facing infinity listagg that 4000 bytes in listagg issue, so I created a defined user aggregate function suggested by asking tom team,

    https://asktom.Oracle.com/pls/Apex/f?p=100:11:0% 3A % 3A % 3A % 3aP11_QUESTION_ID: 2196162600402

    But I am facing the error as "digital or value error: character string buffer too small" in the Type on line 27 when questioning this way

    Select stragg (val) in the dummy_tab;

    My table has a column and the data type is varchar2 (50) and he has more than 300 documents,.

    can someone here help me to solve this problem.

    Thanks and greetings

    Guru

    Now if you followed this link, so I hope that you:

    (a) set the attribute of the object type to be a CLOB

    (b) sets the return value of your Mapper function to be a CLOB

    and not as in the example (which is the time before the existence of LISTAGG) as a Varchar2...

    HTH

  • not able to seeds and release - error report: 06502: PL/SQL: digital or value error: character string buffer too small.

    Hello

    After an upgrade of 4.2.4 5.0.0 we aren't able to seeds and publish the translation.

    There is report error: ORA-06502: PL/SQL: digital or value error: character string buffer too small.

    DB version is 11.2.0.3.0.

    Main language 'fr', translation 'sk '.

    APEX day language is "en".

    Any thoughts?

    Hello

    Fortunately, we have solved the problem.

    After upgrading a default sort to the report was to 'language '.

    If report error, that is fair enough to click on a prompt different orders of the report to change the sorting of the report.

    (the blank report is displayed at the bottom of the page, and you can see the guests)

    After the click the report updates and looks OK.

    Good day.

  • ORA-01722: invalid number calculation error during the treatment.

    My version of the APEX is Application Express 4.2.6.00.03

    I imported apex application 4.0.2 and his object of decision-making support in my apex.

    Its installed successfully.

    But when I try to run this application it show me this error:

    ORA-01722: invalid number calculation error during the treatment.

    Thank you guys for your help.

    I found the solution.

    There was a problem in the authentication scheme.

    I called function as return function_name in 4.0.2

    but in the Apex 4.2.6 to call a function word return is not necessary.

    He was throwing the error caused that Word back.

  • PL/SQL error: digital or value error: character string buffer too small

    HI gurus of the oracle,.

    I'm new to PL/SQL,

    my version of oracle's oracle 11g.

    I create a procedure to insert data from flat file to a table using UTL_FILE.

    The table is

    CREATE TABLE EXT_PERSON_INFO

    (

    ID_PERSON NUMBER (38),

    ID_BATCH NUMBER (38),

    ID_PERSON_NBR VARCHAR2 (3 BYTE),

    ID_AREA VARCHAR2 (5 BYTE),

    NM_FINAL VARCHAR2 (20 BYTE),

    NM_START VARCHAR2 (20 BYTE),

    DATE OF DT_DOB,

    ID_SERIAL VARCHAR2 (BYTE 9),

    DATE OF DT_RESPONSE,

    TRANS_TYPE VARCHAR2 (2 BYTE),

    REG_RESPONSE VARCHAR2 (1 BYTE),

    TM_RX TIMESTAMP (6)

    )

    My procedure is

    CREATE OR REPLACE PROCEDURE PROC_PERSON

    IS

    f_line VARCHAR2 (2000);

    f utl_file.file_type;

    f_dir VARCHAR2 (250);

    fname VARCHAR2 (50);

    F_ID_PERSON EXT_PERSON_INFO.ID_PERSON%type: = 1;

    F_ID_BATCH EXT_PERSON_INFO.ID_BATCH%type: = 1;

    F_ID_PERSON_NBR EXT_PERSON_INFO.ID_PERSON_NBR%type;

    F_ID_AREA EXT_PERSON_INFO.ID_AREA%type;

    F_NM_FINAL EXT_PERSON_INFO. Type of NM_FINAL %;

    F_NM_START EXT_PERSON_INFO. Type of NM_START %;

    F_DT_DOB EXT_PERSON_INFO. Type of DT_DOB %;

    F_ID_SERIAL EXT_PERSON_INFO.ID_SERIAL%type;

    F_DT_RESPONSE EXT_PERSON_INFO. Type of DT_RESPONSE %;

    F_TRANS_TYPE EXT_PERSON_INFO. Type of TRANS_TYPE %;

    F_REG_RESPONSE EXT_PERSON_INFO. Type of REG_RESPONSE %;

    BEGIN

    fname: = "D:\raj\raj.txt";

    f: = utl_file.fopen('RAJ',fname,'r');

    loop

    Start

    UTL_FILE.get_line (f, f_line);

    exception

    When no_data_found then

    "exit";

    end;

    F_ID_PERSON: = 1;

    F_ID_BATCH: = 1;

    F_ID_PERSON_NBR: = substr (f_line, 1, 3);

    F_NM_FINAL: = substr (f_line, 4, 22);

    F_NM_START: = substr (f_line, 23, 34);

    F_DT_DOB: = substr (f_line, 35, 44);

    F_ID_SERIAL: = substr (f_line, 45, 48);

    F_DT_RESPONSE: = substr (f_line, 49, 58);

    F_TRANS_TYPE: = substr (f_line, 59, 60);

    F_REG_RESPONSE: = substr (f_line, 61, 61);

    F_ID_AREA: = substr (f_line, 62, 64);

    insert into EXT_PERSON_INFO VALUES (F_ID_PERSON, F_ID_BATCH, F_ID_PERSON_NBR, F_ID_AREA, F_NM_FINAL, F_NM_START, F_DT_DOB, F_ID_SERIAL, F_DT_RESPONSE, F_TRANS_TYPE, F_REG_RESPONSE);

    end loop;

    UTL_FILE.fclose (f);

    commit;

    end;

    /

    am getting error

    ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Please help me in this regard. Impossible to trace the issue.

    Thanks in advance

    Kind regards

    REDA

    The error message should include a line number to reference your code to see what line the error occurred on.

    That said, look at the documentation for SUBSTR as you incorrectly use the third parm.  It's length, no end of race.  That's your problem.

  • The system has encountered an error during the interview of the application. If the error persists, contact the system administrator

    Hi all

    We cloned an Oracle EBS R12.2.2 instance and it worked very well for us. To increase the RAM of the newly created virtual computer, we did the virtual machine down. Once the RAM has increased, we started all the services (without error), including level of DB and Application layer. But when we try to access the application of EBS get the following error:

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    The system has encountered an error during the interview of the application. If the error persists, contact the system administrator.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


    Then I checked all the services, they are running.


    Log file: / u01/applmgr/SCREWS/fs_ne/inst/VIS_ebsr72/logs/appl/conc/log

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Process of shell VIS_0402@VIS Manager internal simultaneous departure - ID 6095

    logfile=/U01/applmgr/vis/fs_ne/inst/VIS_ebsr72/logs/appl/conc/log/VIS_0402.Mgr

    PRINTER = noprint

    mailto = applmgr

    Restart = N

    diag = N

    sleep = 30

    PMON = 4

    quesiz = 1

    Reviver is ENABLED

    CP-SYSTEM ADMIN RESP. internal MISSINGThe competitor Manager encountered an error.

    Check the simultaneous log manager for more information. : APRIL 2, 2014 14:21:59 -

    Shut down the internal concurrent Manager: April 2, 2014 14:21:59

    List of errors encountered:

    .............................................................................

    _ 1 _

    Systematic AFPCSQ can't nec USER_ID value of the profile option. ORACLE

    error 1403 in get_responsibility_data

    Cause: get_responsibility_data

    has failed because of the ORA-01403: no data found.

    The SQL statement being executed at the time of the error was: and

    a exe

    .............................................................................

    APP-FND-01388: cannot read the value for option profile SQL_TRACE in routine and ROUTINE.

    List of errors encountered:

    .............................................................................

    _ 1 _

    Routine AFPCAL has received the code of failure while running or analysis of your

    simultaneous program CPMGR

    Examine your log file of concurrent application for more information.

    Make sure that you pass arguments in the correct format.

    .............................................................................

    The internal concurrent Manager VIS_0402@VIS ended with the State 1 - abandon.

    --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    Note: Before you restart the virtual machine it worked great. It has not changed anything except the RAM to the virtual machine. After the start, we get error.

    I need your help. Please suggest me.

    Thank you

    Prabhakar

    Hi all

    Thank you for your support. I solved the problem. Find the info below.

    ===================================================================================================

    Question: Like I said existing VM is cloned VM. Then after we had changed the host name. I checked the database alert log file:

    Before the reboot: name of the node was the previous still node name VM that it functioned very well. (for ex: xyz.domain)

    After the reboot: name of the node is replaced by the new host name. (for ex: abc.domain)

    Once the name of the node is changed he started creating problem in starting the application services.

    One last thing, I want to mention here after hostname change, approval of new contextfile has 700, but it should be 755.

    Solution: I followed these steps.

    (1) stop all services on the LAYERS of the DB and APP

    (2) change the new contextfile permission if not 755 and the .env at the level of the source DB

    (3) cd $ORACLE_HOME/appsutil/bin and run as: perl adgentns.pl appspass = apps contextfile = $CONTEXT_FILE - removeserver

    (4) change the name from old host to the new host name, so find in contextfile.

    (5) start listener, then the database

    (6) listener status, it must must give service to the db instance

    (7) perform autoconfig with new contextfile (DB Tier)

    (8) perform autoconfig (pane APP)

    (9) start all services

    ======================================================================================================

    It works for me, and now the application is running. I hope that it will also work for others.

    Thank you

    Prabhakar

  • Text editor enriched ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Hello

    I have apex user 4.2.3 with enterprise database edition 11, I page include RICH TEXT EDITOR, when I add data to this text and save it will record successfully and when I try to view this information in another page I see all the data, as expected, the problem when I try to go to the same page as RICH TEXT EDITOR error message apper ORA-06502 : PL/SQL: digital or value error: buffer string too small, I see this link https://forums.oracle.com/thread/2461151?tstart=0 but I don't know how it solve it, the problem is made data at the point of the rich text editor.


    Any suggestion?


    Thank you

    Thanks for the reply,

    Its standard form with text rich field, my question she same as link above I added before

  • ORA-06502: PL/SQL: digital or value error: character string buffer too smal

    Hi experts,


    Please check my query

    DECLARE
    f utl_file.file_type;
    s NVARCHAR2 (32000);
    VARCHAR2 (10) F1;
    F2 char (1);
    F3 VARCHAR2 (100);
    F4 VARCHAR2 (100);
    F5 VARCHAR2 (100);
    F6 DATE;
    F7 DATE;
    F8 DATE;
    F9 DATE;
    F10 DATE;
    F11 char (1);
    BEGIN
    DBMS_OUTPUT. ENABLE (100000);
    f: = utl_file.fopen ('MID5010_DOC1TP', 'OPT_CM_BASE.txt', 'R');

    LOOP
    BEGIN
    UTL_FILE. GET_LINE (f, s);

    F1: = REGEXP_SUBSTR (s, "[^ |]") +', 1, 1);
    F2: = REGEXP_SUBSTR (s, "[^ |]") +', 1, 2);
    F3: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 3);
    F4: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 4);
    F5: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 5);
    F6: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 6);
    F7: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 7);
    F8: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 8);
    F9: = REGEXP_SUBSTR (S, "[^ |]") +', 1, 9);
    F10: = REGEXP_SUBSTR (S, "[^ |]") +' 1, 10);
    F11: = REGEXP_SUBSTR (s, "[^ |]") +', 1.11);

    insert into OPTUM_ICD10CM_BASE
    (OF THE CODE
    STATUS,
    SHORT_DESCRIPTION,
    LONG_DESCRIPTION,
    FULL_DESCRIPTION,
    CODE_EFFECTIVE_DATE,
    CHANGE_EFFECTIVE_DATE,
    TERMINATION_DATE,
    RELEASE_DATE,
    CREATION_DATE,
    VALIDITY)
    VALUES (F1,
    F2,
    F3,
    F4,
    F5,
    F6,
    F7,
    F8,
    F9,
    F10,
    F11);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    EXIT;
    END;
    END LOOP;

    UTL_FILE. FCLOSE (F);
    END;
    ------------

    and format text as below


    A50.0 | Short | Long | Full | 01/01/2009 | / 01/2009 | 01/01/2013. 18/09/2012 | C |
    A50.1 | Short | Long | Full | 01/01/2009 | 01/01/2009 | 001-2013 | 18/09/2012 | C |
    A50.2 | Short | Long | Full|01-01-2009|01-01-2009|67|01-01-2013|09-18-2012| C |
    A50.3 | Short | Long | Full | 011-2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A50.4 | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | 5.
    A50.5 | R | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A50.6 | Short | Long | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A50.7 | Short | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    2345. Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.0 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.1 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.2 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.3 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.4 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.5 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.6 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.7 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.8 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A60.9 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A70.0 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A70.1 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A70.2 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A70.3 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A70.4 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    B222 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.1 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.2. N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.3 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.4 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.5 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.6 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.7 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.8 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A4.9 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A5.0 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A5.1. N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A5.2. B: Short | Long | Full|01-01-2009|01-01-2009|01-10-2013|01-01-2013|09-18-2012| C |
    A5.3 | B: Short | Long | Full|01-01-2009|01-01-2009|01-10-2013|01-01-2013|09-18-2012| C |
    D642 | B: Short | Long | Full|01-01-2009|01-01-2009|01-10-2013|01-01-2013|09-18-2012| C |
    A5.5 | B: Short | Long | Full|01-01-2009|01-01-2009|01-10-2013|01-01-2013|09-18-2012| C |
    A5.6 | B: Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A5.7 | C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A001 | C | Short update | Long update | Full update | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A009 | C | Short update | Long update | Full update | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A5.10. C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A0109 | C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.0 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.1 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.2 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.3 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.4 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.5 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.6 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    F10.7 | N | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A30 | C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A316 | C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |
    A317 | C | Short | Long | Full | 01/01/2009 | 01/01/2009 | 01/01/2013. 18/09/2012 | C |


    but I make an error such as ORA-06502: PL/SQL: digital or value error: character string buffer too small

    Please help me

    See now, you really have to think carefully, the code of operation step by step. Then you could help you.

    I told you to use a when others share to block emergency inside the LOOP and you that has changed in the external main block! Why?

    Simply change and recheck.

  • VIX API is abandoned during the call to VixJob_Wait()

    We use the following code fragment to copy files to and from a guest operating system. The code is running on Ubuntu 8.04.

    -


    jobHandle = VixHost_Connect (VIX_API_VERSION,

    PORT,

    host,

    HOSTPORT,

    esx_username,

    esx_password,

    0,

    VIX_INVALID_HANDLE,

    NULL,

    (NULL);

    ERR = VixJob_Wait (jobHandle, VIX_PROPERTY_JOB_RESULT_HANDLE,

    (& hostHandle, VIX_PROPERTY_NONE);

    Vix_ReleaseHandle (jobHandle);

    jobHandle = VIX_INVALID_HANDLE;

    If (VIX_FAILED (err))

    {

    fprintf (stderr, "Could not connect to host ("FMT64"%d \n %s)", err,) ")

    Vix_GetErrorText (Err, null));

    RETURN_CODE = VIX_API_COULD_NOT_CONNECT_TO_HOST;

    GoTo error;

    }

    jobHandle = VixVM_Open (hostHandle,

    vmpath,

    NULL,

    (NULL);

    ERR = VixJob_Wait (jobHandle, VIX_PROPERTY_JOB_RESULT_HANDLE,

    (& vmHandle, VIX_PROPERTY_NONE);

    -


    When the host is a server ESX (version 3.5 or 4.0) code succeeded 100% of the time.

    When the host is a vCenter Server 4.1 code gives up about 15% of the time during the call to VixJob_Wait.

    When it does not reach the output of the program is:

    -


    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_get_data: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_notify: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: instance of type non-instantiatable invalid "gdouble.

    (process: 27760): GLib-GObject-CRITICAL *: g_signal_emit_valist: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_notify: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: instance of type non-instantiatable invalid "gdouble.

    (process: 27760): GLib-GObject-CRITICAL *: g_signal_emit_valist: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_get_data: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_notify: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: instance of type non-instantiatable invalid "gdouble.

    (process: 27760): GLib-GObject-CRITICAL *: g_signal_emit_valist: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

    (process: 27760): GLib-GObject-WARNING *: type invalid uninstantiatable "gdouble" cast iron "GObject".

    (process: 27760): GLib-GObject-CRITICAL *: g_object_notify: assertion 'G_IS_OBJECT (object)' failed

    (process: 27760): GLib-GObject-WARNING *: instance of type non-instantiatable invalid "gdouble.

    (process: 27760): GLib-GObject-CRITICAL *: g_signal_emit_valist: assertion 'G_TYPE_CHECK_INSTANCE (instance)' failed

      • ERROR *: file /build/mts/release/bora-127388/bora/vim/lib/gvmomi/gvmomiSession.c: line 1253 (gvmomi_session_invoke_method): failed assertion: (NULL == g_hash_table_lookup (session - & gt; private - & gt; listenerTable, listener))

    aborting...

    -


    Is the trace of gdb

    -


    (gdb) thread 1

    #0 0xb7f9e410 in __kernel_vsyscall)

    (gdb) bt

    #0 0xb7f9e410 in __kernel_vsyscall)

    #1 0xb7dc1085 in raise () from /lib/tls/i686/cmov/libc.so.6

    #2 0xb7dc2a01 in abort () from /lib/tls/i686/cmov/libc.so.6

    #3 0xb7b204f7 /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libglib-2.0.so.0 g_logv)

    #4 0xb7b20529 /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libglib-2.0.so.0 g_log)

    #5 0xb7b205a7 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libglib-2.0.so.0 g_assert_warning)

    #6 0xb7624969 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #7 0xb7740125 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0 vmodl_vim_virtual_machine_acquire_mks_ticket)

    #8 0xb6ff7935 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so)

    #9 0xb6ff8098 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so)

    #10 0xb7ac94fb (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_cclosure_marshal_VOID__VOID)

    #11 0xb7abc06b (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_closure_invoke)

    #12 0xb7accc93 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0)

    #13 0xb7ace187 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_signal_emit_valist)

    #14 0xb7ace339 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_signal_emit)

    #15 0xb7623261 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #16 0xb7628be4 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #17 0xb7629817 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #18 0xb7ac94fb (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_cclosure_marshal_VOID__VOID)

    #19 0xb7abc06b (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_closure_invoke)

    #20 0xb7accc93 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0)

    #21 0xb7ace187 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_signal_emit_valist)

    #22 0xb7ace339 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgobject-2.0.so.0 g_signal_emit)

    #23 0xb7623261 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #24 0xb7624bb8 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #25 0xb762e9c2 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libgvmomi.so.0)

    #26 0xb700baed in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so)

    #27 0xb700a807 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so Poll_LoopTimeout)

    #28 0xb6fa6fe9 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so)

    #29 0xb7089bf3 in? (from /usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so)

    #30 0xb7a9b4fb () from /lib/tls/i686/cmov/libpthread.so.0 start_thread

    #31 0xb7e6ce5e in clone () from /lib/tls/i686/cmov/libc.so.6

    (gdb) thread 2

    #0 0xb7f9e410 in __kernel_vsyscall)

    (gdb) bt

    #0 0xb7f9e410 in __kernel_vsyscall)

    #1 0xb7e62c07 () from /lib/tls/i686/cmov/libc.so.6 survey

    #2 0xb708ad57 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so SyncEvent_Wait)

    #3 0xb6fa55d2 (/usr/lib/vmware-vix/lib/VIServer-2.0.0/32bit/libvix.so VixJob_WaitVargs)

    #4 0xb7f657cf (/lib/libvixAllProducts.so VixJob_Wait)

    #5 0x08048b71 in main)

    -


    Is anyone know the cause of the problem, and if there is a fix?

    Thank you

    Ian

    He has all the symptoms of a bug in Vix which has been fixed in version 1.8. When Vix tries to open a virtual machine on a system of video conferencing with multiple data centers, there is a race that could cause memory corruption.

    Update should fix the problem.

  • ORA-06502: PL/SQL: digital or value error: character string too small buffer

    Dear gurus, I'm generation mail format html from oracle 10 g database.

    Display the data in html format message body are superior to more than 32 k.

    can you please guide me how to handle this error?

    ORA-06502: PL/SQL: digital or value error: character string too small buffer


    I use the long data type for message body data.

    http://asktom.Oracle.com/pls/asktom/f?p=100:11:4325516854017254:P11_QUESTION_ID:1739411218448

    see you soon

  • ORA-06502: PL/SQL: digital or value error: character of error number

    Hello gurus,

    I get the following error:
    ORA-06502: PL/SQL: digital or value error: character of number conversion error

    It happens on wizard generated in a table.
    DECLARE
    v_venue_prsntd_qtr varchar2(3);
    v_venue_prsntd_fy  number;
    
    BEGIN
    FOR i IN 1 .. apex_application.g_f02.COUNT
      LOOP
        IF apex_application.g_f05 (i) IS NOT NULL THEN 
            v_venue_prsntd_qtr := 
             Case WHEN TO_CHAR(apex_application.g_f05 (i), 'MON') IN ('OCT','NOV','DEC') THEN '1'
                  WHEN TO_CHAR(apex_application.g_f05 (i), 'MON') IN ('JAN','FEB','MAR') THEN '2'
                  WHEN TO_CHAR(apex_application.g_f05 (i), 'MON') IN ('APR','MAY','JUN') THEN '3'
                  ELSE '4'
                  END;
      -- INTO v_venue_prsntd_qtr
      -- FROM venue_prsntd
      -- WHERE venue_prsntd_seqno = apex_application.g_f02 (i) 
      -- AND dfcy_seqno = apex_application.g_f03 (i)
      -- AND apex_application.g_f05 (i) IS NOT NULL; 
    ----fiscal year
     --    v_venue_prsntd_fy := 
     --       CASE WHEN TO_CHAR(TO_NUMBER(TO_CHAR(apex_application.g_f05(i), 'MMDD'))) < 1001 THEN --------TO_CHAR(apex_application.g_f05 (i),'YYYY')
    --        ELSE TO_CHAR(TO_NUMBER(TO_CHAR(apex_application.g_f05 (i),'YYYY')) + 1) 
    --      END;
    
       --  INTO v_venue_prsntd_fy
       --  FROM venue_prsntd
       --  WHERE venue_prsntd_seqno = apex_application.g_f02 (i) 
       --  AND dfcy_seqno = apex_application.g_f03 (i) 
       --  AND apex_application.g_f05 (i) IS NOT NULL; 
       --  
    ---END IF;
      --- IF apex_application.g_f02 (i) IS NULL AND apex_application.g_f05 (i) IS NOT NULL Then 
              -- INSERT INTO venue_prsntd(venue_prsntd_qtr, venue_prsntd_fy)
              --                   VALUES(v_venue_prsntd_qtr, v_venue_prsntd_fy);
                 UPDATE VENUE_PRSNTD
                      SET VENUE_PRSNTD_QTR = to_number(v_venue_prsntd_qtr)
                         -- VENUE_PRSNTD_FY = v_venue_prsntd_fy
                 WHERE VENUE_PRSNTD_SEQNO = APEX_APPLICATION.G_F03(i);
    END IF;
    END LOOP;
    END;
    I'm trying to update venue_prsntd_qtr. I commented all the rest to see if I can limit the error is coming from.

    QTR is a numeric field in the database. I have gone back and forth with the variable type in the code and still get the same error.

    I use oracle db 10g, apex 3.2.1

    Thank you
    Mary

    Hi, I don't think it's possible to integrate with the routine auto mru. What you can do is to use a trigger to insert database after the cessation of the to do.

    Otherwise, you will still need a separate process Apex which runs after the SRM process.

    Luis

  • ORA-06502: PL/SQL: digital or value error: character buffer t string

    I understand the error, but I don't know where is the case,
    The error
    Exception: ORA-06502: PL/SQL: digital or value error: character buffer t string
    Little OO

    I know that to be here: but it makes no sense I got anought space, I got same increse VARCHAR2 (42); for VARCHAR2 (100);
    I guess my question is is there a way to debug, so I can see exactly which variable creates the problem.
    There is a lot of code, I hate to put all the code here, please help I'm stuck!
     PROCEDURE process2 (
          v_aidy_code   IN   faismgr.rorstat.rorstat_aidy_code%TYPE
       )
       IS
          v_filename1          VARCHAR2 (42);
          v_filename2          VARCHAR2 (42);
          v_path               VARCHAR2 (26);
          v_file_out1          UTL_FILE.file_type;
          v_file_out2          UTL_FILE.file_type;
          w_pidm               faismgr.rorstat.rorstat_pidm%TYPE;
          w_match1_no          NUMBER;
          w_match2_no          NUMBER;
          w_match3_no          NUMBER;
          w_match4_no          NUMBER;
          w_match5_no          NUMBER;
          w_match6_no          NUMBER;
          w_match7_no          NUMBER;
          w_match8_no          NUMBER;
          w_pidm_check         faismgr.rorstat.rorstat_pidm%TYPE;
          w_ssn_check          saturn.spbpers.spbpers_ssn%TYPE;
          w_idoc_id_no_check   NUMBER;
          w_pidm_no            NUMBER;
          w_comment            ryridoc_cover.nomatch_comment%TYPE;
          w_ryridoc_insert     VARCHAR2 (1);
          w_tgrp_code          faismgr.rorstat.rorstat_tgrp_code%TYPE;
          w_ntf                VARCHAR2 (1);
          d_space5             VARCHAR2 (5);
          w_no_recs            NUMBER;
          w_no_1recs           NUMBER;
          w_no_2recs           NUMBER;
          w_no_notprocessed    NUMBER;
          w_no_questionable    NUMBER;
          w_no_subsequent      VARCHAR2 (1);  
    
    BEGIN
               --v_path := '/' || SUBSTR (database_name, 1, 4)
          ----          || '/u02/sct/banner/bandev2/middlebury/dat_files';
           v_path     :=        'MIDD_DATA' ;
          v_filename1 :=
                  'idoc_nomatch' || TO_CHAR (SYSDATE, 'yyyymonddhhmiss')
                  || '.lis';
          v_filename2 :=
                    'idoc_error' || TO_CHAR (SYSDATE, 'yyyymonddhhmiss')
                    || '.lis';
          v_file_out1 := UTL_FILE.fopen (v_path, v_filename1, 'w');
          v_file_out2 := UTL_FILE.fopen (v_path, v_filename2, 'w');
          d_space5 := '     ';
          w_no_recs := 0;
          w_no_1recs := 0;
          w_no_2recs := 0;
          w_no_notprocessed := 0;
          w_no_questionable := 0;
          w_match1_no := 0;
          w_match2_no := 0;
          w_match3_no := 0;
          w_match4_no := 0;
          w_match5_no := 0;
          w_match6_no := 0;
          w_match7_no := 0;
          w_match8_no := 0;

    Certainly an improvement, you are now thank yourself.

    You are welcome, regardless of the problem.

    Concerning
    Peter

Maybe you are looking for

  • Satellite U840 does not illuminate

    Hello Yesterday I went to turn on my Satellite U-840 ultrabook and nothing happened when I pressed the power button. I left the laptop plugged in and with an external hard drive connected (and turned on) I had several times previously. The LED lights

  • Satellite L350D - update ATI display drivers hangs

    I tried to update my drivers to view the ATI/AMD Catalyst site because I'm trying to get better performance with 3D games and others. Toshiba USA website does not update display driver at the time for ATI radeon 3100 (on LAPTOP) because the product i

  • English version of Knoppix?

    I have been recommended in this forum to use and use, Knoppix when I had difficulties to access my hard drive.  I downloaded the file .iso to a cd and booted from the CD, but it was extremely difficult to use because it was in German.  Fortunately my

  • Looks like I need a new battery (it does not load and it's like 8 years). Is it possible to test it before you go out and buy a new paste?

    I tried a couple of things I read everything, but the battery still does not charge on my dell inspiron E1505. For a while if I have figited with the charger, it would begin to load. I ordered a charger because plastic has been slightly cracked and w

  • Connector problem

    Hello I'm new here so sorry if my question is a bit silly. I am trying to download my file located in the web, but I'm having a lot of problems. connection = Connector.open (HttpConnection) (true url, Connector.READ),inputStream = connection.openInpu