Additional language installed - ORA-01403

Hello there,
yesterday I upgraded APEX 3.2 -> APEX 4.1, this worked fine.
Today I installed the additional language german. Now I get ORA-01403 when choosing language de in the development environment of the application. The error is the same if I set the browser language to english or german.
This is what I did:
1.) set environment:
NLS_LANG=GERMAN_GERMANY.AL32UTF8
export NLS_LANG
echo $NLS_LANG
GERMAN_GERMANY.AL32UTF8
2.) start sqlplus
3.) ALTER SESSION SET CURRENT_SCHEMA = APEX_040100;
Session wurde geändert.
4.) @load_de.sql
Any help is appriciated,
thanks,
Carola

Hello again,
in the first attempt I set the wrong environment AND I executed the wrong script:
I took the script of <APEX3.2 software directory>\APEX\Builder\de instead of
<APEX4.1 software directory>\APEX\Builder\de
So now I deinstalled the language:
changed directory to <APEX3.2 software directory>\APEX\Builder\de -> ran unload_de.sql script
and installed it again:
changed directory to <APEX4.2 software directory>\APEX\Builder\de -> ran load_de.sql script
BUT I got a new error:
After installation of the german language I was able to click the "Deutsch" (German) Button in the GUI but I was allways redirected to the Login-Page
i am only able to login with my login/password even I used "English" for the language.
I cannot login with German...
as described here:
Connot login into APEX 4.1 Workspace with German language
The solution mentioned in that thread worked for me, too:
sqlplus / nolog
connect sys as sysdba
ALTER SESSION SET CURRENT_SCHEMA = APEX_040100;
begin
wwv_flow_security.g_security_group_id := 10;
wwv_flow_security.set_internal_cookie_name;
commit;
end;
regards,
Carola

Similar Messages

  • How can i install / add Urdu as additional languag...

    how can i install / add Urdu as additional language in my nokia E63

    You will have to visit a Nokia care point to get additional languages installed, but I would call the care point you intend to visit first to hear if they can do it, and what it would cost you.
    This will be an extra service as you have bought a device intended for use some where else.
    You can find your nearest care point here:http://europe.nokia.com/support/repair-and-recycle/repair/care-points
    Give them a call and check out your options. Good luck!

  • ORA-01403: no data found  in apply at bi -direction stream

    Hi Experts,
    we use 10g at window for bi direaction.
    after building, I got ORA-01403: no data found in apply process. I check these error LCR
    that invloved DML action for different tables in source database.
    our stream a schema level capture and no error handle as well as other exception.
    former DBA set up this tream.
    I just check online got these info.
    ORA-01403 No Data Found
    An ORA-01403 error message is generated when an Apply process tries to update an existing row and the old_values in the row LCR do not match the current values at this destination database object.
    This situation could arise on account of any of the situations below:
    Supplemental logging is not specified for columns that require supplemental logging at the source database. In this case, LCRs from the source database may not contain values for key columns.
    There may be a problem with primary key in the destination table. If no primary key exists for the table or if the target table has a different primary key than the source table, substitute key columns can be specified using the set_key_columns procedure in the dbms_apply_adm package. Error ORA-23416 may be encountered if a table being applied does not have a primary key.
    There is a data mismatch between a row LCR and the table for which the LCR is applying a change. In this case, the destination has to be updated to match the data values before the error transaction can be executed again.
    what do i need to do?
    Thanks,
    Jim

    It will be wise to run the Oracle supply streams health check script to check your existing streams environment.
    From the result, you can also open a tar with Oracle to see if they can help you with the setup.
    In addition to the ORA-01403 error, you can also run some of the Oracle Streams packages (Managing Apply Errors) to see the full detail of what is missing that caused the Ora-01403 error.
    I will also try to implement a smoke test using the simple heartbeat table suggested by Oracle Streams, if that is working, then you can begin your full scale setup in your environment knowing that the base Streams Structure is setup correctly.
    HTH

  • Import job failes with ORA-01403: no data found ORA-06512: at "SYSMAN.MGMT

    Hello everyone,
    I need a help on importing data from a schema in server 1 to the same schema in server 2 via network link. I receive following error when I try to submit a job on Enterprise Manager:
    Import Submit Failed
    ORA-01403: no data found ORA-06512: at "SYSMAN.MGMT_JOB_ENGINE", line 5806 ORA-06512: at "SYSMAN.MGMT_JOB_ENGINE", line 7812 ORA-06512: at "SYSMAN.MGMT_JOB_ENGINE", line 8608 ORA-01403: no data found ORA-06512: at "SYSMAN.MGMT_JOBS", line 273 ORA-06512: at "SYSMAN.MGMT_JOBS", line 86 ORA-06512: at line 1
    Sql of the job:
    declare
    h1 NUMBER;
    begin
    h1 := dbms_datapump.open (operation => 'IMPORT', job_mode => 'FULL', remote_link => 'B_PROD_LINK', job_name => 'BIMPORTFRMPRDTORPT4', version => 'COMPATIBLE');
    dbms_datapump.set_parallel(handle => h1, degree => 1);
    dbms_datapump.add_file(handle => h1, filename => 'IMPORT.LOG', directory => 'DATA_PUMP_DIR', filetype => 3);
    dbms_datapump.set_parameter(handle => h1, name => 'KEEP_MASTER', value => 0);
    dbms_datapump.set_parameter(handle => h1, name => 'INCLUDE_METADATA', value => 1);
    dbms_datapump.set_parameter(handle => h1, name => 'ESTIMATE', value => 'BLOCKS');
    dbms_datapump.set_parameter(handle => h1, name => 'REUSE_DATAFILES', value => 0);
    dbms_datapump.set_parameter(handle => h1, name => 'TABLE_EXISTS_ACTION', value => 'TRUNCATE');
    dbms_datapump.set_parameter(handle => h1, name => 'SKIP_UNUSABLE_INDEXES', value => 0);
    dbms_datapump.start_job(handle => h1, skip_current => 0, abort_step => 0);
    dbms_datapump.detach(handle => h1);
    end;
    It says network link is active when I test the network link to make sure its connectivity. I create the network link as a system account. I'm trying to do an import from an Oracle database 10.2.0.2 to 11.2.0.1. My 10g database is on ms windows 2003x64 while my 11g database is on OEL 5.4x64.
    What should I do for now?
    Thank you.
    Edited by: user12144220 on Nov 4, 2012 5:02 AM

    It will be wise to run the Oracle supply streams health check script to check your existing streams environment.
    From the result, you can also open a tar with Oracle to see if they can help you with the setup.
    In addition to the ORA-01403 error, you can also run some of the Oracle Streams packages (Managing Apply Errors) to see the full detail of what is missing that caused the Ora-01403 error.
    I will also try to implement a smoke test using the simple heartbeat table suggested by Oracle Streams, if that is working, then you can begin your full scale setup in your environment knowing that the base Streams Structure is setup correctly.
    HTH

  • Can I Install additional language?

    I have a 9iAS installation (infra+midtier).
    During installation the locales of the machine were set to English. Due to this English is the only installed language.
    Now I want to add an additional language (necessary because SSO is otherwise dictating AMERICAn_AMERICA as the regional setting).
    Is this possible?
    Peter

    AdamHavas wrote:
    This is for a language that isn't already in the Language selector of Pages.
    Then changing your OS language would be of no use in any case.  Would you be willing to tell us the name of the language in question?

  • Apex 4.1: Error processing session sentry function. ORA-01403

    Hi,
    I have developed an application in Apex 4.0. I've translated the application into one additional language, and set the language to be derived from the browser. On the 4.0 instance, this works as expected (changing the preferred language in the browser and reloading a page uses the translated app).
    I then deployed the main app and the translated app to an Apex 4.1 (runtime-only) instance. If I access the application with the browser set to the primary language (English), it works, but if I change it to the secondary language and reload the page, I get:
    Error processing session sentry function.
    ORA-01403: no data foundThis also happens if I try to access the translated application directly via the URL.
    (I'm not sure what "session sentry function" means; in my application I have a custom authentication scheme with a custom "authentication function", but I have not specified anything for "session verify function" -- which is close but not exactly the same as "session sentry function", so I am not sure if they are the same thing.)
    Anyway, as this works on Apex 4.0 and not on Apex 4.1, I wonder if it is a bug... ?
    - Morten
    http://ora-00001.blogspot.com

    Anyway, as this works on Apex 4.0 and not on Apex 4.1, I wonder if it is a bug... ?Pretty sure it's a bug.
    I looked at APEX_040100.WWV_FLOWS and noticed that the AUTHENTICATION_ID column was NULL for my translated application (app id 301), whereas the main application (app id 300) has a value in that column. (This appears to be a new column for Apex 4.1.)
    The export file for the translated app creates my custom authentication scheme:
    wwv_flow_api.create_auth_setup (
      p_id=> 1711018744328150.301 + wwv_flow_api.g_id_offset,So what I did to fix this was to run:
      update apex_040100.wwv_flows
      set authentication_id = 1711018744328150.301
      where id = 301;That solved the problem, although the question still remains: Why didn't this get set automatically when importing the translated app?
    - Morten
    http://ora-00001.blogspot.com

  • Template for additional language not working, always displays English templ

    Hello,
    We have an Oracle implementation in Spain. I already have BI Publisher setup for printing a pdf for a report in English and I added an additional rtf template in the BI Publisher Administration responsibility and set the language to Spanish/Spain. I cannot get the spanish version to print. I select the Spanish language on the login page and I can see the application is in Spanish but when I run the report I still get the default English pdf. Is there something else I need to do or maybe something wrong with how our Spanish language install is setup? Please give me some suggestions of what I need to check or let me know if I missed something.
    Thank you,
    David.

    Hi, for oracle, you have 2 templates and language doesn't matter there. You should look at creating a "translation file" for the english template.
    1 - Under XML Publisher Respon
    2 - Template
    3 - Query your template
    4 - under "Update" button, transalatable file, choose you template and apply
    5 - back on the template page, you should see 2 news buttons (Export Translation, Upload Translations).
    6 - Click on Export, save file.
    7 - This file will include all the text label in the template.
    8 - Open it, change Target language
    9 - Change the text in <target> element for spanish wording.
    10 - Once completed, Upload you translation file thru "Upload translations" button.
    12 - Login the right language, generate your report and see the results..

  • Forms application returns "ORA-01403 no data found" exception on Windows 7

    Hi everyone,
    I am currently involved in an application compatibility project for an O/S migration from Windows XP to Windows 7.
    We have a legacy Oracle Dev6i P18 Forms application that has been working perfectly on Windows XP for the last decade or so. When we installed the same application on Windows 7, it returned a pop-up error message with the text: "ORA-01403 no data found" when performing a certain operation (clicking on a Submit button in a specific form). The same operation works successfully on Windows XP displaying the message "Submit has been successful".
    This error is well documented and the solution involves adding an exception handler to the faulting SQL statement(s) in order to handle the ORA-01403 exception. Unfortunately, the application is composed of compiled forms (.FMX) and we no longer have the source code so I can't implement this solution.
    I ran a file comparison utility (WinDiff from the Windows SDK) and confirmed that all the files in the application folder and the Oracle Dev6i P18 folder are identical on both the Windows XP and Windows 7 systems.
    I enabled tracing in SQLNet.ORA by configuring TRACE_LEVEL_CLIENT=SUPPORT (I know, too verbose) and other related settings on both systems and have uploaded the traces to my SkyDrive for public viewing:
    http://sdrv.ms/10BNYtI
    The traces show that the "ORA-01403" exception occurs many times on both Windows XP and Windows 7 systems as a result of various SQL statements being executed, for instance:
    SELECT TASK_ID,TASK_DETAIL_STATUS,ASSIGNED_DATE FROM TASK_DETAILS WHERE TASK_ID = :b1 AND TASK_DETAIL_STATUS = (SELECT ID FROM V_TASK_STATUS WHERE ABBREVIATION = 'PLANNED' ) FOR UPDATE OF TASK_DETAIL_STATUS,ASSIGNED_DATE
    UPDATE TASK_DETAILS SET ASSIGNED_DATE=NTMS_UTIL.GET_SERVER_DATE,TASK_DETAIL_STATUS=(SELECT ID FROM V_TASK_STATUS WHERE ABBREVIATION = 'ASSIGNED' ) WHERE ROWID = :b1
    ORA-01403: no data found.
    So the same error happens on both Windows XP and Windows 7.
    On Windows XP, the error is somehow handled, and does not cause the "Submit" operation to fail.
    On Windows 7, however, the error bubbles to the surface and is displayed to the user, thus halting the "Submit" operation.

    Thank you. I'm well aware that adding an exception handler is the classic solution to the ORA-01403 error. However, like I mentioned in my original post, I don't have the source code. All I have are the compiled .FMX forms so I can't implement such a solution:
    From my original post:
    This error is well documented and the solution involves adding an exception handler to the faulting SQL statement(s) in order to handle the ORA-01403 exception. Unfortunately, the application is composed of compiled forms (.FMX) and we no longer have the source code so I can't implement this solution.

  • Strange problem: ORA-01403: no data found when report has a sort

    Hi,
    I have a report which behaves very strangely but only for one particular user. The report runs fine when no columns are set as sort-by in the report attributes. As soon as I try and set a column to sort (any column, it doesn't matter) this user gets the error message:
    failed to parse SQL query:
    ORA-01403: no data found
    appear where the report should be on the page. The rest of the page displays OK. No other users are affected. If I remove the sort then the report is OK for this user (unsorted though!)
    The report is a structured query with custom column headings, nothing unusual, quite basic. I have tried exporting and reimporting the page but it doesn't fix it. Same behaviour for this particular page in our test system as well.
    I could rebuild the page but I'd rather know what is wrong in case it happens to some other region.
    Thanks,
    Steve

    Steve,
    The reports engine stores the sort settings in the user preferences. This is done so that when you return to a report, it maintains the earlier sort settings. Like in your response to the HTML DB studio posting, you would keep your report sorted by "Created On" descending or ascending even when you come back another time. It's save to remove those preferences; all that's going to happen is that your users will see the report using the report's default settings the next time they go to that page. I will try to investigate this problem further, whatever additional information you can provide, will be helpful,
    Marc

  • ORA-01403 NO DATA FOUND ERROR AFTER SELECTING PORTAL LINK TO CALL FORM

    I have a portal application link that I use to call a form. The field on this
    form gets populated based on a bind variable that is passed in by the link.
    This was working 2 weeks ago but now when I click on the link to call the form
    I am receiving the following error "AN UNEXPECTED ERROR OCCURRED ORA-01403 - NO
    DATA FOUND". This happens in more than one application where I set this type
    of link to call a form. Anyone have any ideas?!!

    Hi Andy,
    Thank you very much for your time!
    The fields in the form are all right. The fields get filled in perfectly in most of the cases, only those few rows don't :(
    However, now that you wrote of the process of row fetching, I think that maybe I have an idea of what is happening. My table has two primary keys (two fields together make the primary key, I don't know how it's called in English), one of them is a date. (I know that this is quite a bad practice, but, much to my regret, I cannot change it.) Now, this date is in YY-MON-DD format, which is used by my language.
    One of this dates is from 1800's. As my report shows it, the year gets truncated to the last two character. APEX passes this value into the field of the form using varchar2, and when it tries to cast it back to YY-MON-DD format, then it supposes it's from 1900's instead of 1800's. With 19xx however it doesn't find my field.
    Does this sound logical? It seems logical to me, but I am a beginner... :(
    Still, if this is the core of the problem, it's most possibly not the only problem, because I have dates from 19xx which can't identify their rows... But I am suspicious because of these date things. If you have any idea then please let me know.
    Thanks,
    Eszter

  • ORA-01403: no data found error (given by edit link of APEX-made form)

    Hello!
    I am a newbie in apex, so please forgive me if my question is stupid or obvious. I got a bit confused because of a problem, and I really hope that you professionals can give me some clues of where could I begin the elimination of this error.
    I made a report and a form in another page with APEX's tool Add Form/Report and Form. The report shows a full table, and the rows of the table are editable. However, I have rows which I can't edit because APEX gives me the following error:
    ORA-01403: no data found
    Error Unable to fetch row.
    Not all rows do this, but I have a few that do. Of course the report shows them, so I think they must exist. I didn't change anything special on the APEX-made items or processes.
    I thought that the problem could be with my data, but I couldn't see anything weird in that rows.
    Does anyone have an idea of what can this be caused by? I have APEX 2.1.0.00.39.
    Thanks,
    Eszter

    Hi Andy,
    Thank you very much for your time!
    The fields in the form are all right. The fields get filled in perfectly in most of the cases, only those few rows don't :(
    However, now that you wrote of the process of row fetching, I think that maybe I have an idea of what is happening. My table has two primary keys (two fields together make the primary key, I don't know how it's called in English), one of them is a date. (I know that this is quite a bad practice, but, much to my regret, I cannot change it.) Now, this date is in YY-MON-DD format, which is used by my language.
    One of this dates is from 1800's. As my report shows it, the year gets truncated to the last two character. APEX passes this value into the field of the form using varchar2, and when it tries to cast it back to YY-MON-DD format, then it supposes it's from 1900's instead of 1800's. With 19xx however it doesn't find my field.
    Does this sound logical? It seems logical to me, but I am a beginner... :(
    Still, if this is the core of the problem, it's most possibly not the only problem, because I have dates from 19xx which can't identify their rows... But I am suspicious because of these date things. If you have any idea then please let me know.
    Thanks,
    Eszter

  • ORA-01403: no data found

    I am trying to make Form on a Table with Report.
    And my Form is ok, I can successfully insert data. But the problem is report. When I click
    on EDIT button, when I want to change inserted data, I get error message:
    ORA-01403: no data found
    Error      Unable to fetch row.
    Thanks!!!

    Hi,
    I am getting the following error ORA-01403 no data found. I have a hidden item called Temporary item which i created as i have a report that appears with additional information when clicked on show_detail. I created this item by looking at this:
    http://htmldb.oracle.com/pls/otn/f?p=11933:13:2667331074727537::NO:RP::
    At the top of page 24 i have a text box and a search button Go that presents the report that matches the number that the user will type in the text box. I have created a branch to the same page. In my Report region i have code that will select the information from the database where id = :P24_SEARCH_ID
    P24_SEARCH_ID is the text box.
    I tried inserting in the branch> set TEMPORARY_ITEM to values P24_SEARCH_ID and then insert id=:TEMPORARY_ITEM in the region , but this would not work.
    Sometimes the Go button works but when i log out and log back into apex and try running it, i get the error
    Any suggestions as to how i can make it work always?
    Monica

  • "ORA-01403: no data found" after deleting a row

    hi all.
    i created a report with a form using a wizard. so i think it's very strange when i delete a row it gives me the error
    ORA-01403: no data found
    but i did everything with the wizard assistant! is that a bug???
    thanks for help!
    j0sh

    i just tried it again, very clean:
    created new workspace, new application, new report with form. again the same. now i even can't access this page anymore after relogging in!!
    @ sergio:
    the report and the form page is the same one. i'm using my own installation. i installed version 10g that i downloaded from oracle.com .
    where do i get the release number from? is it maybe 1.5.0.00.33 ?
    thanks.
    josh

  • Error ORA-01403 no data found upgrade database to 10.2.0.3

    Hi,
    I am upgrading a database from 8.1.7.4 to 10.2.0.3. I install the software and i create and configure a new listener. When i am try to execute database upgrading assintant i can see my two databases but when i click one of them, and click next the error appears:
    ORA-01403 no data found
    ORA-06512 at line 1560
    I don´t know the reason.
    Thanks for your help.

    Going by your [earlier thread|http://forums.oracle.com/forums/thread.jspa?threadID=852649&tstart=0], I presume that it is you are now able to connect to a database using the 10.2.0.3 oracle_home.
    Did you run through the pre-upgrade verification steps at the URL provided earlier ?
    If you are encountering an error, surely you can post which script and which procedure is failing ?

  • For all of you looking to add additional language ...

    First, to answer all of you out there like my self, who are looking for solutions to add extra languages to your phone such as chinese, spanish, french... etc...
    1st simple answer is NO!! there are NO language pack you can download.
    2nd, NO nokia will not install it for you even if u goto their customer service, and are willing to pay.
    This is my story;
    I brought a new E65 in less than a week ago, in australia. Like most of other nokia phones sold in australia it did not come with chinese. ALTHOUGH chinese australians are the 3rd largest ethnic group from English and Italian in Australia, on my phone i only have the option to choose from English, Malaysian, Philipino and Indonesian. As my previous phone is a nokia 6270 brought from hong kong (yes i was a loyal customer of nokia), half of my contacts and nearly all my SMSes are in Chinese. I seeked help from nokia. I first typed them e-mail which i received no reply. Then since i wasn't too far away from a nokia care center i also dropped by, and i was told "we can't do it, we simply don't have the software to do it, you could try calling the customer care center." So i did, and spent about 1hour on the phone talking firstly to a gentlemen and then the manager. I told her my problem and begged for help. As i am capable of reading and writing english i did not even ask for the phone to be fully transformed into a chinese version phone, but just to an extend that i will be able to read what i had (especially the name of my contacts). I must say, they were polite and did not have any attitudes, HOWEVER!!!! The only reply i got was, if the customer center could not do anything about it they can not either, they can not install a firmware from another region with chinese because there are licence issues. long word short... they were nice but helpless. We even brought up the possiblity of 3rd party softwares, however i've searched for 2 days and did not find any, which ended in the same way when she offered to search for a possible 3rd party software.
    For those of you who do not know, YES it is possible to change the firmware your self and get the language u want!! HOWEVER!!! at the cost of loosing your warranty.
    BUT unfortunatly for me nokia is tooo busy with its flag phone N95 and can not even be bothered to release a firmware for E65. So even when i am so despirate that i am ready to give up my 2 year warranty, I can not make my E65 capable of reading chinese.
    So, i now have a USELESS E65 next to me. YES it is USELESS!!!!!!
    For those of you who are looking for new phones and do have specific languages that you need, make sure u ask about the language FIRST!!! and if nokia does not have it, SONY ERICSON is probably a better choice as they install languages for you!!!
    FINALLY if some of you nokia employees sees this, dont' delete this, because i am only telling a story of truth. AND if you really care, pls HELP US, and make language packs available, we are WILLING to PAY!!!! but HELP US!!!!! you have good phone design, nice customer service althought may not be helpful for this case, why let your self down on such a simple area.
    Seed01001

    i know sony (but i never really liked them other than their ear phones) does that... but with nokia i was told, all the nokia phones are market dependent. thus each region has set languages nokia has decided to release depended on the market for each specific phone. since they told me that its due to many reasons such as software licence issues.... if they could order in a phone with additional languages why can't they install one? because its essentially the same thing, because it means that nokia is distrubuting a phone with additional language then its original intension, i dont' mind if it takes 2 months for them to send my phone to china/hong kong and install chinese for me. maybe nokia has extra languages licenced in the UK..... all i was told from the sales i had was you could try 3rd party software...... which was not viable when i searched....Message Edited by seed01001 on 20-Jul-200703:41 AM

Maybe you are looking for

  • I wish to import a Bank csv file into my numbers spreadsheet but all of it goes into one column which I can't separate

    I wish to import a csv file from my Bank into a numbers spreadsheet but I can't expand it from the one column it's in . Can anybody help  Thankyou

  • Perturbing FCP 7 Log and Capture Question

    I tried to digitize some HDV footage this afternoon, in theway I’ve always done it, but now suddenly it doesn’t work.  Details to follow, but first my rig: Mac Pro (Nehalem 2009) running Snow Leopard 10.6.8, NOFIREWIRE 400 PORTS Final Cut Studio 2 wi

  • How to generate the sequential number in Javascript

    Hi , I am facing one issue. I am adding the record to the underneath record and it works fine. But I have one problem there. I am having 10 records and adding one record between any of those records. I can able to reinitialize the index using xfa.for

  • Database problem

    void read(){ while ((record = br.readLine()) != null) { StringTokenizer st = new StringTokenizer(record); String url = st.nextToken(); String IP = st.nextToken(); String method = st.nextToken(); String page = st.nextToken(); String http = st.nextToke

  • Making fact table

    hi, im having a relationship in the physical layer: T1--< T2 --< T3 --< FactTable >-- T4 The fact table also has many to 1 relationship to another table which has its own relationships to other tables but the problematic area is here. I wanted to cha