Invalid login after apex upgrade

I upgraded apex for Oracle XE to apex 3.2.1. Ran all the scripts and everything seemed fine. Ran the script to change the admin password that worked as well.
However when I go to either of the login pages(one that has the workspace and the one that has just username and password) from internet explorer
I keep getting invalid login credintials
I tried the below solution from the this thread How Gain Access When Locked Out of Developer Workspace
I keep getting 0 rows updated after running this
update apex_030200.wwv_flow_fnd_user set change_password_on_first_use ='N'+
where lower(user_name) = 'admin';
I even tried the update without the where clause and still got 0 rows updated.
here's a quote from the thread
Hi All,
The lockout message I received was:
Access denied by Application security check
Application access restricted to internal workspace users.
Return to application.
I logged in as SYSDBA and ran the following scripts:
First change the password for the Internal ADMIN account (the one i was locked out of)
SQL> @apxxepwd <new password>
then
SQL> update apex_030200.wwv_flow_fnd_user set change_password_on_first_use ='N'
where lower(user_name) = 'admin';
+1 row updated+
SQL> commit;
--Note: schema name apex_030200 will depend on version of APEX you are using and your installation. I am using version 3.2.0.00.27+
Finally log into APEX using the two-field security form with the admin account. Make any changes to the workspace or user accounts. Note that after repeated attempts to login, some accounts may be locked, as was the case with me.
Hope this helps somebody else.
Regards,
Glenroy

Ok I got the admin user to work. However when I try to import an app I get this
"ORA-02291: integrity constraint (FLOWS_FILES.WWV_FLOW_FILE_OBJ_FK) violated - parent key not found"
Error uploading export file."
I get this is i use an app from apex 2.1 or even when I tried to import the sample app I exported from 3.2.
I wonder if there is some type of permissions issue with the admin account since I created it manually I was not sure what to put in the fields...

Similar Messages

  • Invalid date format after APEX upgrade

    We are currently working on upgrading our applications from 1.6 to the new APEX 3.2 version. After the upgrade of one of our systems I have a tabular form that is returning the error 'Invalid date format found'. The date that is getting entered into the system is being displayed and choosed via a sql popup. The code for the pop up is
    SQL CODE
    create or replace view next_weeks as
    with t as (
    select
    trunc(sysdate) + (rownum - 1) / 2 d
    from
    dual
    connect
    by rownum <= 28)
    , call_info as (
    select
    c.call_identifier, c.callback_date, c.callback_cancelled
    from uid_csr_schedule c
    select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    ((select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or ci.callback_cancelled !='Y'))) <
    (select csr_calls_per_period from uid_sch_system_default)
    minus
    select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    (select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or (ci.callback_cancelled !='Y')))
    =(select override_amt from uid_sch_call_override
    where (to_char(begin_date,'dd-mon-yy') || ' ' || upper(period)) = to_char(t.d, 'dd-mon-yy AM'))
    union select
    to_char(d, 'fmDy MM/DD/YYYY AM') l
    , to_char(d, 'dd-mon-yy hh:mi:ss AM') v
    ,to_char(d, 'mm/dd/yy hh:mi:ss AM') o
    from
    t
    where
    ((select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or ci.callback_cancelled !='Y'))) >=
    (select csr_calls_per_period from uid_sch_system_default)
    and
    (select count(callback_date) from call_info ci where ci.callback_date = t.d
    and (ci.callback_cancelled is null or (ci.callback_cancelled !='Y')))
    <
    (select override_amt from uid_sch_call_override
    where (to_char(begin_date,'dd-mon-yy') || ' ' || upper(period)) = to_char(t.d, 'dd-mon-yy AM'))
    order by o
    The form then has the item set as a popup with a date format mask of dd-MON-yy hh:mi:ss AM. The popup displays fine and the date is shown in the field but the error is received when I try to save the information. If I change the application global setting of date format mask to dd-MON-yy hh:mi:ss AM then this error goes away however, it creates problems on all the rest of my pages that use this date in the where clause of the queries. Is there a way to solve the problem above without having to change the globalization parameter or do I need to change this parameter and then redo those queries?
    Thanks for your help!
    Amber

    Amber,
    It's interesting that the problem goes away if you set the global date format to be the same as the column level. The column level should trump the global setting. What process is returning the error? Are you sure it's the MRU or could it be something custom?
    You could consider adding a process before the MRU fires that uses alter session to change the date format.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/

  • Saved Interactive Reports after APEX Upgrade

    Hi,
    When you do an APEX Upgrade are saved interactive reports kept?
    Martin

    I have been experiencing lost saved "as Named Report" Interactive reports, whenever I migrate the application from test to prod.
    To clarify how we operate.
    We have a test APEX environment that is separate to production. The Test app has a different App_id but uses the same schema name. In test the application Id is 1xxx (eg 1201) and in test 2xxx (2201). I export Test 1201 and then import into Prod changing the App_id to overwrite 2201. I always lose the saved reports. I just tried an experiment of creating the saved report in Test and seeing if it migrates to prod, but of course it does not.
    How should I operate the two different Test and Prod environment to be "best practice" and not lose "as Named Report" Interactive report saved by the end-user?
    thanks Peter

  • After APEX-upgrade to 3.0 on OracleXE the link admin/apex_admin dosent work

    Hi,
    I made a new installtion of OracleXE. After that I upgrade it to APEX 3.0 on this way:
    * Editing the ..\apex\coreins.sql script
    ........ On line 573 you need to set the XE variable to 1 for XE installation:
    ........ define XE = '1'
    * sqlplus "sys/syspass as sysdba" @apexins password SYSAUX SYSAUX TEMP /i/
    * sql> @apex_epg_config.sql d:\ (the APEX-installationfiles are under D:\apex)
    * Update OWA-Packages with @owainst.sql
    * Shutdown und startup the database
    After that I can access the link http://localhost:8080/apex, but I am not able to access the link http://localhost:8080/apex/apex_admin - I got the message HTTP 404 Page not found.
    I had already drop the schemata FLOWS* and reinstall APEX 3.0, but this is the same.
    And if I try this:
    http://localhost:8080/apex
    and login with workspace INTERNAL, I got this:
    application=4050 workspace=10
    Error ERR-1014 Application not found
    The installation-logfile shows me no errors.
    What is wrong here?
    Regards,
    Mark

    Hi,
    its a while ago since i've done this, but for me this worked on a fresh XE Installation:
    * extract Apex-Zip to C:\dlextract\apex_3.1
    * open a Command-Window (cmd) and change to directory C:\dlextract\apex_3.1\apex
    * sqlplus /nolog
    * connect sys as sysdba;
    * @apexins SYSAUX SYSAUX TEMP /i/
    * after apexins script call sqlplus again
    * @apxldimg c:\dlextract\apex_3.1
    * @apxxepwd new_password_for_admin_user
    As a last Step i upgraded the PL/SQL Web Toolkit (for Details see apex/owa/Readme.txt) using "@owainst in sqlplus" located in directory apex/owa
    Hope that helps,
    Peter

  • RV-042 won't allow login after firmware upgrade

    After upgrading our RV-042 (purchased May 2011) with latest firmware, the configuration is still working, but we cannot login to the router on the LAN, it just hangs after clicking login or hitting Enter.  We've tried different browsers and different computers, we've tried router restart.  It won't even respond to a intentionally incorrect password.  Anyone have any idea what to do next?  Thanks.

    Hi all,
    I had the same problem (after some uptime, i can open the login-page, input my credentials, but do not get any further).
    After some testing, I found out that it must be some kind of memory-problem:
    The amount of time after a reboot, until this behaviour occurs, depends on the amount of alterts being logged.
    If you disable logging of the firewall-rules, and clear the log every day, you will be running for quite a while, without this problem.
    I have opened a supportcase with cisco, and they are aware of my findings.
    If this will lead to an official solution, well.....
    Cheers, sean

  • Email not working after APEX upgrade

    O/S: Windows 2003
    DB: 11gR1
    Email no longer working for users after upgrading from 4.0 to 4.1. New 'principal' APEX_040100 added to same ACL as previous version's principal APEX_040000. In fact, both still exist in ACL.
    Error code in APEX Admin Mail Queue: ORA-24247: network access denied by access control list (ACL)
    What could be causing the email facility within APEX to no longer work?
    Cheers!

    see this {message:id=10355015}

  • Invalid login credentials after upgrading to 3.0.1

    I have upgraded our apex2.1 version to 3.0.1. When trying to login for the first time I entered my database user name in the workspace field and enter my database user name and password as per upgrade instructions. However, all I get is the error 'Invalid login credentials'. The upgrade instructions do not mention any additionals action steps that must be taken. Can anyone please advise how to solve this problem.
    Thanks, Richard

    I had the same problem and tried about everything with no success, until ...
    I changed the ADMIN password using the apxxepwd.sql script (can be found in the root of the 3.0.1 apex directory). Run this script under sqlplus as "sys/password as sysdba" and enter twice the ADMIN password when prompted for '&1'. Login on http://localhost:8080/apex/apex_admin, you'll be prompted to change the password. Change the password (may be the same as the old one) and now you can finally login as ADMIN.
    I did this on APEX 3.0.1 on a Oracle EXPRESS 10.2.0.1.0 on Windows Vista, and suppose this must work on other platforms too.

  • Unable to Login into APEX after upgrade from ORACLE XE to APEX 3.2

    Hi,
    I have upgraded Oracle 10g XE to with apex_3.2 on the Windows XP.
    My ORACLE XE wa in folder "C:\ORACLE XE"
    And APEX 3.2 in folder "C:\Ver 3.2\APEX"
    Once you complete the standard install, i performd the following steps to complete
    the upgrade which i got on my previous post.
    Till normal installation i was able to login in Apex link and was able to run my application which was
    in oracle XE but the only problem was i was unable to see any images in "EDIT PAGE" but my application was running well.
    then i did following steps to get those images
    Connect to SQL*Plus as SYS
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    I chanbged image directory as below
    FROM:
    create directory APEX_IMAGES as ‘&1/apex/images’ ;
    TO:
    create directory APEX_IMAGES as ‘c:\oraclexe\apex\images’ and also tried ‘c:\ver 3.2\apex\images’;
    Ran @apxldimg.sql
    @apxxepwd.sql password (where password is the password of the Application Express internal ADMIN account)
    Exit from the SQL*Plus session.
    Change directory to c:\oraclexe\apex\owa, open the README.TXT file and follow the instructions within to complete the installation
    But now i am unable to login into the page itself. It "showing Page Not Found"
    Please kindly help me how to run APEX now through link.
    Thanks in advance.
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on Aug 11, 2009 2:05 AM
    Edited by: user11204334 on Aug 11, 2009 4:30 AM

    Hi John,
    Thanks for reply
    I got error while doing following steps in few procedures
    Change directory to c:\oraclexe\apex\owa, open the README.TXT file and follow the instructions within to complete the installation
    Before doing the above step i was able to login into my application but without images
    Can you please help that how to check those errors and any particular procedure you know which is responsible for the Login problem.
    Thanks a Lot for help John
    Thanks & Regards
    Sanjay

  • Invalid Login Credentials  after a brand new install of APEX 2.2

    I'm trying to install APEX2.2 for the first time to see what it can do.
    I have followed the install document.
    When I got ot here, http://localhost:7777/pls/htmldb
    It requests a workspace, username, password.
    back to the documentation, it states use http://localhost:7777/pls/htmldb/apex_admin
    to create your workspace. And to sign in as admin, and the password passed into @apexins.sql When I try that, it results in the error message "Invalid Login Credentials" The documentation does not describe anything about that!
    Please help
    Thanks,
    Jason

    Joel,
    I had a cut and paste error in my last posting, I actually ran this:
    alter user FLOWS_020200 account unlock;
    connect FLOWS_020200/apex
    begin
    wwv_flow_api.set_security_group_id(p_security_group_id=>10);
    wwv_flow_fnd_user_api.create_fnd_user(
    p_user_name => 'admin2',
    p_email_address => '[email protected]',
    p_web_password => 'admin2') ;
    end;
    alter user FLOWS_020200 account unlock;
    I have a thought on why Ben and I both had this same "Invalid Login Credentials" issue. In my case it certainly wasn't because of any special characters in the password. I used apex as a password.
    From reading Ben's post I see we both first had a problem with the images directory. Sounds like Ben had the same issue I had. Which was in the marvel.conf I first entered this
    Alias /i/ "C:\oracle\product\10.2.0\db_as\Apache\Apache\images"
    instead of this:
    Alias /i/ "C:\oracle\product\10.2.0\db_as\Apache\Apache\images/"
    This caused my http://localhost:7777/pls/htmldb URL to paritially work. I'm thinking that may be what caused the "Invalid Login Credentials" once I made the Alias adjustment.
    Thanks,
    Jason

  • Portal Login Broke after Db Upgrade to 9.0.1.3

    Hi -- My portal web page login doesn't work after upgrading my portal database version from 8.1.7.1 to 9.0.1.3. All the scripts I ran (Note 159657.1 and Chap. 7 of 9i Database Migration Manual) ran ok. I also applied whatever patches/fixes required to get Oracle 9iAS 1.0.2.2.2 working with database version 9 per the certification matrix pages. I am still using Oracle 9iAS 1.0.2.2.2 on the middle tier and have only upgraded the database version. Also, I am not using LDAP for authentication.
    After the database upgrade, the portal web login page comes up fine, but after I execute a login attempt I get a "Page Not Found" in my browser. This error shows up in apache's error_log:
    [Mon Oct 7 03:54:41 2002] [error] mod_plsql: /pls/ssodad/portal30_sso.wwsso_app_admin.ls_login ORA-1403
    ORA-01403: no data found
    ORA-06512: at "PORTAL30_SSO.WWSSO_APP_ADMIN", line 391
    ORA-06512: at "PORTAL30_SSO.WWSSO_APP_ADMIN", line 669
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL30_SSO.WWSSO_LS_PRIVATE", line 358
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 8
    [Mon Oct 7 03:56:07 2002] [warn] mod_plsql: Stale Connection due to Oracle error 1400
    [Mon Oct 7 03:56:07 2002] [error] mod_plsql: /pls/ssodad/portal30_sso.wwsso_home.home ORA-1400
    ORA-01400: cannot insert NULL into ("PORTAL30_SSO"."WWCTX_SSO_SESSION$"."SUBSCRIBER_ID")
    ORA-06512: at "PORTAL30_SSO.WWCTX_SSO", line 2215
    ORA-06512: at "PORTAL30_SSO.WWCTX_SSO", line 1053
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL30_SSO.WWCTX_SSO", line 1261
    ORA-06512: at "PORTAL30_SSO.WWCTX_API", line 179
    ORA-06512: at "PORTAL30_SSO.WWSEC_APP_PRIV", line 529
    ORA-06512: at "PORTAL30_SSO.WWSSO_HOME", line 322
    ORA-06512: at line 8
    Everything worked fine prior to the upgrade. There are no invalid objects causing this and I can log into the portal database fine through a sqlplus session. Does anyone know why portal login is broke after database upgrade? Has anyone upgraded their portal database versions in place with this issue afterwards?
    Thanks for any help anyone can offer...!
    Kate

    Hi Benjamin,
    Thanks for your reply. I already had a working 9iAS Release 1 with a 8.1.7.1.0 database. All I did was upgrade the database from 8i to 9i on the database server. I also applied the jdbc patch on the 9iAS app server so a connection with the 9i database could be established. As far as I know, there's no portal configuration assistant step here because I already had a complete fully-functioning portal install before the database upgrade to 9i. Is there something I'm missing about your suggestion?
    Thanks.

  • User account not showing up in login screen after Leopard upgrade

    One of my admin accounts is no longer showing up at log in. I did the upgrade and password suggestions on the support sight... titled Unable to log in to account after an upgrade but still no good. The only account affected did have a password of 8 characters or more.
    I go to open System Preferences when in a different account with admin rights and I don't see my original account as an existing user? I can see my original stuff in the user folders, but I am not listed as a user in the Account Preferences or Login. I also cannot create a new user with the same name as my old login as that name is apparently(!) already in use. I have an account with admin rights that is showing up.
    From a different thread it seems that many others are having this problem thus I think it warrents its own thread. What is the easiest way to bring back my account and data... I know it is there it just is not showing up at log in.
    tbigsmo wrote this from other thread... hmmmm
    One more thing, I created a new user and copied over all folders from my old user account and that didn't even think about working. The last solution was suggested by the apple 800 number. This is what I was going to try next, but now am waiting. Also the other thread was very hard to follow as many folks did not have access to a working user admin account.
    How can I find myself too?

    Turns out you're both right, sort of...
    * The Guest Account is hidden because it's a sub 500 user, so you guys were on the money there. (I hadn't realized it was a sub-500 user...)
    * Using the hint at the link posted by V.K. to hide the secret administrator hides it ONLY from the login window, but not from the Accounts section of System Preferences...so, that solution doesn't work for me. (This is going on a master image, and the users will have admin rights, so they would be able to delete the secret administrator account...)
    So, I'll just have to live without having the actual Guest account active (which I need active for use with Orbicule Undercover,) and instead I created a standard user (with a few parental controls) named "Guest User."
    Thanks, both of you, for your help.

  • Unable to login to apex as admin after apparent successful installation

    I am unable to login to apex as admin after an apparent successful installation.
    I have an existing Oracle database 11.2.0.1.0 with Oracle Text running on Windows 7 Professional with hundreds of gigabytes of free disk space available. I did everything as an operating system user with administrator privileges. I downloaded the latest version of apex 4.0.2 for all languages, unzipped the downloaded zip file, extracting all files to an apex directory. I changed the working directory to apex and started sql*plus, connected sys as sysdba, ran apexins.sql installation, apex_epg_config.sql and apexconf.sql configuration, apexchpwd.sql to change the admin password, and apxldimg.sql to copy the images, and exec dbms_xdb.sethttpport(8080), unlocked accounts, and granted connect privileges.
    The installation log did not show any errors and included:
    "Thank you for installing Oracle Application Express.
    Oracle Application Express is installed in the APEX_040000 schema.
    The structure of the link to the Application Express administration services is as follows:
    http://host:port/pls/apex/apex_admin (Oracle HTTP Server with mod_plsql)
    http://host:port/apex/apex_admin (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    The structure of the link to the Application Express development interface is as follows:
    http://host:port/pls/apex (Oracle HTTP Server with mod_plsql)
    http://host:port/apex (Oracle XML DB HTTP listener with the embedded PL/SQL gateway)
    JOB_QUEUE_PROCESSES: 1000"
    When I use either browser, Firefox 3.6.12 or Internet Explorer 8.0, and go to http://localhost:8080/apex/apex_admin I get a screen that says:
    "Enter Application Express internal administration credentials"
    and has boxes for a username and password. When I enter admin and the admin_password that I selected, then click on login nothing happens. I don't get logged in. I don't get an error message. It does not show any signs of anything running. It just sits there. I also don't get any messages from Windows or Norton 360 indicating that a pop-up window was blocked or any such thing. I checked that the services are running and also tried shutting down the computer and re-starting (cold boot), but was still unable to login.
    I am a retired developer, not a DBA, so if there is anything else that I should do or check or provide, then please let me know. I have provided a copy and paste of everything that I could think of below. Oddly I don't see an admin user.
    SQL> select * from v$version
      2  /
    BANNER                                                                         
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production   
    PL/SQL Release 11.2.0.1.0 - Production                                         
    CORE     11.2.0.1.0     Production                                                     
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production                        
    NLSRTL Version 11.2.0.1.0 - Production                                         
    SQL> select status from dba_registry where comp_id = 'APEX'
      2  /
    STATUS                                                                         
    VALID                                                                          
    SQL> select username, account_status
      2  from   dba_users
      3  where  username = 'ANONYMOUS'
      4  or     username like 'APEX%'
      5  or     upper (username) = 'ADMIN'
      6  order  by username
      7  /
    USERNAME                       ACCOUNT_STATUS                                  
    ANONYMOUS                      EXPIRED                                         
    APEX_030200                    EXPIRED                                         
    APEX_040000                    OPEN                                            
    APEX_PUBLIC_USER               OPEN                                            
    SQL> select dbms_xdb.gethttpport from dual
      2  /
    GETHTTPPORT                                                                    
           8080                                                                    
    SQL> select owa_util.get_version from dual
      2  /
    GET_VERSION                                                                    
    10.1.2.0.8                                                                     
    SQL> show parameter memory_target
    NAME                                 TYPE        VALUE                         
    memory_target                        big integer 1536M                         
    SQL>

    Are you sure you did give right path to script ? Yes.
    >
    If you extract files to folder c:\temp, you have after that folder c:\temp\apex and bunch of sub folders.
    For script to update images, you give path to folder where you did extract apex install files.
    In above case that is then c:\temp .
    >I created a directory c:\apex on my laptop. I downloaded the zip file to that directory. When I extracted the files to folder c:\apex, the result was c:\apex\apex with a bunch of sub folders and files. When I ran the script, I gave the path c:\apex as indicated in my copy and paste. So, I did everything the same as in the quote above, except that I used apex instead of temp.
    Try extract Apex install zip to c:\temp and give c:\temp as path for scriptAre you suggesting that I redo the entire installation using c:\temp instead of c:\apex? What difference would that make? Would I need to do some sort of uninstall first?

  • Invalid objects after upgrade to 9.2.0.6 from 8.1.7.4

    Anyone have any input as to how I can validate the following objects that were invalid after my upgrade:
    OBJECT_NAME OBJECT_TYPE
    BALTOTDELETE PROCEDURE
    HtoD JAVA CLASS
    MILEXTRACT PROCEDURE
    MilExtract PROCEDURE
    TLRConvertHexToDecimal JAVA CLASS
    UTL_FILE PACKAGE BODY
    6 rows selected.
    SQL> alter procedure BALTOTDELETE compile;
    alter procedure BALTOTDELETE compile
    ERROR at line 1:
    ORA-04043: object BALTOTDELETE does not exist
    SQL> alter procedure MILEXTRACT compile;
    alter procedure MILEXTRACT compile
    ERROR at line 1:
    ORA-04043: object MILEXTRACT does not exist
    SQL> alter procedure MilExtract compile;
    alter procedure MilExtract compile
    ERROR at line 1:
    ORA-04043: object MILEXTRACT does not exist
    SQL> alter package UTL_FILE compile body;
    Warning: Package Body altered with compilation errors.
    Any input you could provide would be greatly appreciated.

    I know about the mixed case issue. Luckily we only use uppercase. The second case regarding the recompile is a valid, but not applicable in our case.
    We are seeing these errors (it appears randomly [to us]) AT RUN-TIME! These objects are there [valid and being executed by many], and one-time it will work and the next maybe, maybe not.
    It really makes no sense.
    Anybody got any other ideas?
    Thanks,
    Jason

  • Using htp.p in Apex 4.2.2 not working in plsql region after an upgrade?

    Hi
    After I upgraded Apex to 4.2, in a region PL/SQL  the code
    htp.p('test');
    not working and I've the error :
    is_internal_error: true
    apex_error_code: APEX.REGION.UNHANDLED_ERROR
    ora_sqlcode: -6502
    ora_sqlerrm: ORA-06502: PL/SQL: numeric or value error
    component.type: APEX_APPLICATION_PAGE_REGIONS
    component.id: 15577009301937579
    component.name: Légende
    error_backtrace: ORA-06512: at "OAS10GR2.OWA_UTIL", line 328 ORA-06512: at "OAS10GR2.HTP", line 1322 ORA-06512: at "OAS10GR2.HTP", line 1397 ORA-06512: at "OAS10GR2.HTP", line 1689 ORA-06512: at line 1 ORA-06512: at "SYS.DBMS_SYS_SQL", line 1204 ORA-06512: at "SYS.WWV_DBMS_SQL", line 1064 ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 4613 ORA-06512: at "APEX_040200.WWV_FLOW_DISP_PAGE_PLUGS", line 3220
    Thank you !

    Try using:
    sys.htp.p('test');
    Not sure why the synonym to HTP is referencing a HTP procedure owned by OAS10GR2 (OAS10GR2.HTP). 
    Did your upgrade complete successfully?

  • ORA-01017: invalid username/password; after Oracle Upgrade 9.2.06 to 10.2

    Hi
    I did an oracle Upgrade from Oracle Upgrade 9.2.06 to 10.2 as per SAP Documentation.
    and after the upgrade was successful i changed the password of SAPABT (sapowner)
    and now it is giving an error in work folder  <b>dev_wo</b>
    while connecting can any one help please ?
    Tue Feb 06 18:55:20 2007
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPABT's password
    C  Connecting as /@ABT on connection 0 (nls_hdl 0) ... (dbsl 640 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   044FAB58   045000D4   044FF95C
    C  Attaching to DB Server ABT (con_hdl=0,svchp=044FF8A8,svrhp=04503F14)
    C  Starting user session (con_hdl=0,svchp=044FF8A8,srvhp=04503F14,usrhp=08C48D68)
    C  Now '/@ABT' is connected (con_hdl 0, nls_hdl 0).
    C  Got SAPABT's password from OPS$-user
    C  Disconnecting from connection 0 ...
    C  Close user session (con_hdl=0,svchp=044FF8A8,usrhp=08C48D68)
    C  Now I'm disconnected from ORACLE
    C  Connecting as SAPABT/<pwd>@ABT on connection 0 (nls_hdl 0) ... (dbsl 640 110706)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   044FAB58   045000D4   044FF95C
    C  Starting user session (con_hdl=0,svchp=044FF8A8,srvhp=04503F14,usrhp=08C48D68)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4473]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11297]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#3 @ 1204] [dbsh    1204 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#2 @ 419] [dblink  0419 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#2 @ 419] [dblink  0419 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1284]

    SQL> connect / as sysdba
    Connected.
    SQL> SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
    OWNER
    OPS$CTSINTCOSNW5\ABTADM
    SQL> SELECT OWNER, TABLE_OWNER, TABLE_NAME FROM DBA_SYNONYMS WHERE SYNONYM_NAME
    = 'SAPUSER';
    OWNER                          TABLE_OWNER
    TABLE_NAME
    OPS$CTSINTCOSNW5\SAPSERVICEABT OPS$CTSINTCOSNW5\ABTADM
    SAPUSER
    SQL>
    Followed the note 400241       Problems with ops$ or sapr3 connect to Oracle       
    Problem got solved via the
    Updating BR * Tools
    brconnect -u / -c -f stats -t all -f collect -p 4 in  Oracle Database Guide 4.3.6 BRCONNECT
    Call BRTOOLS, Select Additional Functions --> Change password for database user.
    in my case it is sapabt user
    Thanks for the quick reply

Maybe you are looking for

  • Icloud data back up delete issue

    Hi! I've recently bought an iphone5 and have restored it from icloud. The problem I have now is that i cannot delete the back up data. I have 3 back up data showing (1) My old iphone (2) My new iphone (3) My ipad. I can delete items 2 and 3 and not (

  • Updating item text in the outbound delivery

    Hi I have a outbound delivery in the system . I want to update some text in the "item text" through a program. how do i do this. sample code would be great. thanks sankar

  • Why are there no tools/options on ipad mini?

    Help please. I am frantically trying to find the options/tools on my ipad mini but having no joy whatsoever. How am I supposed to make my skype online button work on my website if I am unable to change my settings in Skype to show as always on?

  • DISSATISFIED

    I must confess, I am highly dissatisfied with the whole hyped bb10. To start with, it is not user friendly. So much stress for a mobile and supposed to be "handy" device. It's a non utility phone. Not a phone when you need accuracy with speed or shou

  • I am trying to hide the Options menu in UserChrome.css but it is not working. Here is what I have tried menuitem[label="Options..."] {display:none !important;}

    In the userChrome.css I have tried the following entry: #updateSeparator, #checkForUpdates {display: none !important;} menuitem[label="Options..."] {display:none !important;} menuitem[label="Add-ons"] {display:none !important;} menuitem[label="Get Bo