4.1.0.0: "letter dead or unreasonable conversion requested" when you open the package of oracle 9 database

I still get this error, when I want to open a package of an oracle 9 (9.2.0.7.0) database.

With versions of oracle, everything works fine.

The JDK version is 1.8.0_31.

See the following thread:

4.1 EA1 - Oracle 9.2.0.8 errors

I use 4.1EA1 with success against a 9.2.0.8 db, although I did something particularly complex.

Kind regards

GIS

Tags: Database

Similar Questions

  • Get the error: ORA-01460: letter dead or unreasonable conversion requested

    Hello

    I created a Page in Oracle APEX, I have a textarea element Page. I created a Page process on the "submit" button to insert text box data in the CLOB column in a table. If the data in the text box is less than 4,000 characters, it works fine, but if the data exceeds 4000 I get the below error:

    "Error during the processing of validation.

    "ORA-01460: letter dead or unreasonable conversion requested".

    Here's my process of Page:

    declare

    CLOB v_notes;

    Start

    v_notes: = wwv_flow_utilities.clob_to_varchar2(:P1_NOTES);

    INSERT INTO ENQ_DETAILS (ENQUIRY_TYPE,STOCKS,NOTES,CREATED_BY)

    VALUES (1,: P1_RESPONSE_ACTION, v_notes,: APP_USER);

    end;

    Can someone help me please?

    Chaitali salvation,

    Check this plugin: Enkitec CLOB support

    Kind regards

    Jitendra

  • ORA-01460: letter dead or unreasonable conversion requested and INSTR func

    Hi all
    I have the table and the data, following the output of the query is correct but when the data inside the column gen_value more than
    4000 bytes.
    I am facing the following error
    ORA-01460:unimplemented or unreasonable conversion requested
    which include the function Instr can spend just less than 4000 bytes. So how can I solve this problem.
    drop table a;
    create table  a(id number(9), gen_value CLOB);
     
    insert into a values(1, 'ACD BCD AAA, AFD BCF , Egypt,BDE AAC AFC,Egypt,BCF AAE');
    insert into a values(2, 'AVF BCD, BBA BBG BCEV, GACD MNF BCV');
    insert into a values(3, 'AFC ABC, BBG HUH ABCE, Egypt,JHU KK MNK');
     
    declare 
    gen_value  varchar2(20000);
    id number(9);
    type bulk_collect is table of varchar2(500) index by PLS_INTEGER;
         v_bluk1 bulk_collect; 
         v_bluk2 bulk_collect; 
          v_bluk3 bulk_collect; 
    begin 
    
    select id,gen_value into id, gen_value from a where id=1;
    select id,v,cnt bulk collect into v_bluk1,v_bluk2,v_bluk3  from(
    with data as (
     select
      id
     , gen_value ||','  gen_value 
     from dual
    )
    ,r  (id,  gen_value , l) as (
     select  
      id
     ,substr( gen_value , instr( gen_value , ',') + 1)
     ,substr(
       trim(substr( gen_value ,1, instr( gen_value , ',') - 1))
      ,instr(trim(substr( gen_value ,1, instr( gen_value , ',') - 1)),' ',-1)
     )
    from data
    union all
     select  
      id
     ,substr( gen_value , instr( gen_value , ',') + 1)
     ,substr(
       trim(substr( gen_value ,1, instr( gen_value , ',') - 1))
      ,instr(trim(substr( gen_value ,1, instr( gen_value , ',') - 1)),' ',-1)
     )
    from r
    where
    length( gen_value ) > 0
    )
     select id,
     soundex(l)as l
    ,count(*) cnt
    ,trim(max(l) keep ( dense_rank last order by length(l), l desc nulls first)) v
    from r where l is not null
    group by
     soundex(l),id
     order by 1);
    for b in 1..v_bluk1.count loop 
     dbms_output.put_line ('The DOC NUMBER IS '||v_bluk1(b)||v_bluk2(b)||v_bluk3(b)); 
    
    end loop; 
    
    end;
    error is,
    ORA-01460:unimplemented or unreasonable conversion requested
    Which column includes more than 4000 bytes.
    concerning
    Benjamin

    Published by: 973907 on April 14, 2013 04:21

    Published by: 973907 on April 14, 2013 06:13

    Solomon Yakobson says:
    If you explain what your code is trying to accomplish, someone might offer an alternative solution.

    The column GEN_VALUE in table A is a CLOB containing the list separated by commas. Your code divides this list separated by commas into indivitual elements. If none of the elements of comma-separated string exceeds 4000 bytes, what you need is to change GEN_VALUE variable PL/SQL CLOB type and then cast individual items to VARCHAR2:

    declare
    gen_value  CLOB;
    id number(9);
    type bulk_collect is table of varchar2(500) index by PLS_INTEGER;
         v_bluk1 bulk_collect;
         v_bluk2 bulk_collect;
          v_bluk3 bulk_collect;
    begin 
    
    select id,gen_value into id, gen_value from a where id=1;
    select id,v,cnt bulk collect into v_bluk1,v_bluk2,v_bluk3  from(
    with data as (
     select
      id
     , gen_value ||','  gen_value
     from dual
    )
    ,r  (id,  gen_value , l) as (
     select
      id
     ,substr( gen_value , instr( gen_value , ',') + 1)
     ,substr(
       trim(substr( gen_value ,1, instr( gen_value , ',') - 1))
      ,instr(trim(substr( gen_value ,1, instr( gen_value , ',') - 1)),' ',-1)
     )
    from data
    union all
     select
      id
     ,substr( gen_value , instr( gen_value , ',') + 1)
     ,substr(
       trim(substr( gen_value ,1, instr( gen_value , ',') - 1))
      ,instr(trim(substr( gen_value ,1, instr( gen_value , ',') - 1)),' ',-1)
     )
    from r
    where
    length( gen_value ) > 0
    )
     select id,
     soundex(cast(l as VARCHAR2(4000))) as l
    ,count(*) cnt
    ,trim(max(cast(l as VARCHAR2(4000))) keep ( dense_rank last order by length(cast(l as VARCHAR2(4000))), cast(l as VARCHAR2(4000)) desc nulls first)) v
    from r where l is not null
    group by
     soundex(cast(l as VARCHAR2(4000))),id
     order by 1);
    for b in 1..v_bluk1.count loop
     dbms_output.put_line ('The DOC NUMBER IS '||v_bluk1(b)||v_bluk2(b)||v_bluk3(b)); 
    
    end loop; 
    
    end;
    /
    The DOC NUMBER IS 1AAA512
    The DOC NUMBER IS 1AFC256
    The DOC NUMBER IS 1BCF256
    The DOC NUMBER IS 1Egypt512
    
    PL/SQL procedure successfully completed.
    
    SQL>
    

    SY.

  • ORA-01460: dead letter or unreasonable conversion requested

    Hello

    I use

    Database: Oracle Database 11 g Express Edition Release 11.2.0.2.0

    APEX: Oracle Application Express Release 5.0.1.00.06

    When I passing parameters in my query for report error: ORA-01460: letter dead or unreasonable conversion requested

    My source of query report shown as below:

    Select cat_desc, brand_desc, sum (dirty) in the sale of salesview

    where date between to_date(:sdate,'DD-MON-YYYY') and to_date(:edate,'DD-MON-YYYY')

    Group of cat_desc, brand_desc

    I also use > = and < = operator but even the results

    Kind regards

    Jamil

    Jamil Malik wrote:

    Yes, it uses a database link and regret not mentioning the error ORA-02063: preceding MY_LINK line.

    My remote database is 9i

    This is caused by the #12728440 of the database bug, for which there is no documented fix or workaround. Your options are limited:

    • Upgrade the remote database to a compatible version.
    • Try to copy the remote data to the local database outside of the APEX and interrogate him there.
  • good night, is that what happens when you open cloud creative design I check your email and get the following email (&lt; deleted by the moderator &gt;) and let my id or enter gives me more options

    good night, is that what happens when you open cloud creative design I check your email and get the following email (< deleted by the moderator >) and let my id or enter gives me more options

    Hello

    Follow please: address error to connect to Creative Cloud Desktop, Email how to pass my e-mail? and CC has a fake email, can not change

    Kind regards

    Sheena

  • Why the letter L return when you write the e-mail message?

    Why the letter L to turn upsided down, write my email, but not in the word document

    Model Loptop Acer Aspire 6930

    Leroy

     
    Hi Leroy,
     
    1 does happen on an e-mail program or an email client online?
    2 do whenever you press the L key on the message?
    3. don't you make changes in the e-mail program?
     
    Step 1: We recommend that you check if the problem persists when you type "OSK" L
    a. Click Start, keyboard and click on on-screen keyboard
    b. open the program and type the e-mail message by using the on screen keyboard to check if the problem persists.
     
    Kind regards
    Syed - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.
  • I downloaded lightroom 6 on windows 10 and when I open the app it won't let me use the app... Help, please.

    When I try to open lightroom 6 on windows 10 it is said, "adobe has stopped working, windows is looking for a solution to this and will inform you as soon as it is detected. Adobe will be closed "." Please help me, it's stupid, I paid $150 for this software and I can't even use it.

    Step 1.

    Please try to update the graphics drivers on the manufacturing site.

    Reference: Intel® Driver Update Utility

    Step 2.

    If you have tried the steps above, then simple go to control panel > Device Manager > Display Adapter > right-click on the Intel graphics card and expand it and disable it.

    Once that is done, open Lightroom see if it works.

    Step 3.

    Œuvres with Lightroom fine after completing step 2, and then clear the graphics processor of Lightroom preferences.

    Open Lightroom

    Go to Lightroom preferences in the Edit menu

    Click the performance tab

    Deselect the graphics processor

    Restart Lightroom.

    Let me know if this helps.

    Kind regards

    Mohit

  • My saved favorites does not appear on the html bar when I typed the first letter! He appeared and now it does not work! How and what do I do?

    Help! My saved favorites does not appear when I type in the first letter. For an example, I saved "www.facebook.com" as one of my favorites. Whenever I go into facebook, I'll just enter the letter 'f' and he goes, a drop down link in the html bar then I'm leaving for facebook! But recently there have not been showing bookmarks I saved. I reinstalled firefox and it does not solve the problem at all. How and what do I do?

    Make sure that the address bar is not set to 'Nothing': Tools > Options > privacy > address bar: when you use the location bar, suggest: history, bookmarks and bookmarks - see Smart Location Bar

  • Why my printer does not show the same type of size I used when you type a letter on the Microsoft Word processor

    I used Times New Roman 10, when you type a letter on Microsoft Wiord processor and when 1 print the letter la

    He came out of the printer with a much smaller type face. (Dell Windows Vista and Dell AIO Printer 926).

    Hello

    http://support.Dell.com/support/topics/global.aspx/support/my_systems_info/manuals?c=us&l=en&s=Gen& ~ CK = anavml

    Download and read the manual above for her

    and try to dell support

    http://support.Dell.com/support/index.aspx?c=us&l=en&s=Gen& ~ CK = mn

    and dell support forums

    http://en.community.Dell.com/support-forums/default.aspx

  • My iPhone 4 is dead. I loaded an hour then tried the power reset but not joy.

    My iPhone 4 is dead. I loaded an hour then tried the power reset but not joy.

    I'm going to assume that your iPhone 4 no is not in warranty, otherwise you'd be on the Apple Store, right?  I also assume that you are not interested to pay the service battery $ 79 or $ 199 iPhone 4 warranty exchange for a device that is worth less than $100 (U.S. prices)

    So so let's solve the problems.
    When was the last time it works well?

    An iPhone 4 is old enough, and if it has been inactive for a while, then it is possible to lose load under the level at which it is able to charge the battery.  The battery has a logic board little teeny buried in the packaging of the battery that dictates the charging process.  There is really no energy, the battery doesn't have enough juice to be able to tell itself to charge when the charger is connected.

    If the phone has relatively recently been works well, then start troubleshooting in the charging port.  Is your refill clean?  Try to clean with alcohol to 99% and a q tip.  If that doesn't resolve, then you need more information - there are some ammeters really convenient usb little inexpensive that you can plug into a charger, then the unit and he will tell you exactly how much, if any, current load appliance pulls.  An iPhone 4 with normal charging system should draw on 1 ampere.   If yours is pulling 1 amp and shows still do not display, try to connect to iTunes to see if your device is recognized.  If this is the case, then you need solve a display problem, not a problem of load.

    If your closer 0 amp, then you need to open your phone and troubleshoot the battery and dock connector.    A lot of DIY resources out there for you help with this, just a google search away.

    A trip to an independent repair facility will also help you to go down on the problem.  Pick one that stands out for its work with the great review, great warranty and someone who is willing to look at this iPhone 4 with a no solution = no fee policy.

  • My Whatsapp stopped suggesting words when I type the first letter how can I turn that back on FRO my six phone

    My WatsApp has stopped which suggests words when I type the first letter (s) how can I turn that on the back for my six phone more?

    Try: Settings > general > keyboard > predictive

  • When you type a query in the bar always double the third letter, for example, research, if I want to write a 'youtube' written "youutube" what to do, help

    When you type a query in the bar always double the third letter, for example, research, if I want to write a 'youtube' written "youutube" what to do, help

    Hello chilli.willi, try Firefox Safe Mode to see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • Click the menu button

      click Help

      then select restart with disabled modules.

    When the Firefox Safe Mode window appears, select "start mode safe."

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. This might help others with the same problem.

  • When you make a new folder in the "Page Bookmarked" pop up, it won't let me name the folder.

    Usually, when you to bookmark a page, by selecting the drop down next to the 'file' box, you can press "New folder", and it create a new folder and allow you to name it.

    Now, it often does nothing when I press the button, and when it does not have a new folder, it won't let me name. I have to go to my favorites, right click and go to properties and then change the name from there. It is very annoying.

    You use Sync to synchronize bookmarks?

    If you then try to disconnect from sync to see if it has effect.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox/tools > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox/tools > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • Can't let site when I click the back button, it keeps just returning on the site, have to close firefox and try again.

    Can't let a Web site when I click the back button, it keeps just returning on the site, have to close Firefox and restart my search.
    The website below is just an example, it is a little more.
    Is this a problem with Firefox or this particular Web site?
    Thank you for your help.

    I thank very you much for trying to help me.
    I think you pointed me in the right direction, I tried on IE (ugh!) and he worked there. It's been awhile that this HARD drive has been in service and I think it's time to do a clean reinstall of everything.
    Once again, thank you.
    fredsbroke2

  • Version 5.0 on a MAC doesn't let me switch between tabs. Can I open a new tab, but when I try to go in a different tab, it shows me just the content of the tab opened most recently. Help!

    Version 5.0 on a MAC doesn't let me switch between tabs. Can I open a new tab, but when I try to go in a different tab, it shows me just the content of the tab opened most recently. Help!

    In addition, pop up blocker works for a while and then stops working. I have to close and restart Firefox to make it work again. Help!

    I had the same problem, but with Firefox 4.0. My first thought was last updated to Firefox (after of course restarting FF), but it did not help and I had the same problem.

    Among others, I had an extension installed and enabled called tile tabs 4.10 I thought could easily create this problem. I went in my Add-ons Manager and disabled, restarted Firefox and tabs worked properly again. Unfortunately, the extension of the tile tabs is my favorite Firefox Add-on and I use it almost every day to manage my web tasks. I went to the page Add on for tile tabs and saw that there was a notice that version 4.10 did not work properly on Mac OS and install version 4.9 of the extension. I saw that they had a new is not-yet-seen version 4.11 who has tackled the problem of Mac OS, installed, and everything seems to work properly.

    I have no idea why all of a sudden I had this problem as I don't had not updated Firefox or the extension of the tile tabs recently. Also, obviously this could not solve your problem, especially if you have the module installed and active. But our problem started at the same time for both of us it seems based on your post time, so its probably not a coincidence.

    But its worth a quick glance and you can check other extensions if you don't have the legs of tile that might be the cause of the problem.

Maybe you are looking for

  • How can I take off the full page and return to the regular page

    When I go to my on my pages, I have a full screen. This means that I do not see my toolbar... I see my toolbar on top at all times... Can you please help me... Also, I have a problem with the popups all the time... I downloaded Ad-blocker of your add

  • Connection via the press Ctrl-Alt-Delete to start

    HelloSeems locked myself. Display shows, press Ctrl-Alt-Delete to begin, on Windows 2000 Prof, but nothing happens when you press these keys.Help!!Yusuf

  • OfficeJet 4500 Scanner not Fax or copy

    Operating system HP officejet 4500 all-in-one version Windos Vista of origin. message appearing in the lack of window scanner cannot scan, copy or fax

  • Some info on my Moto G4 LTE and Tracfone

    I have posted a few questions on my phone here, but thought I would share my story. I got a tracfone LG39 n for several years. It uses Verizon towers that I had no bars at home. We have a new AT & T Tower less than a mile away, so I got an unlocked M

  • Help build control PWM with Accelerator and arduino

    Hello Good night I'm new to labviewpls help me to build a project, or give the design, because im confused how connect accelertor to PMW with arduino. This regulation: Create a program using LabView configuration between sensorAccelerometer in the cu