Help deleting an application in Apex 3.2.1.00.12 on 10g XE

Hi,
I imported an application (timesheets demo application) by running the install script in an SQLPLUS session which I understand now was not the proper way to do this.
Now I need to delete this application but I'm receiving the following error when trying to delete the application in APEX:
ORA-20000: User ADMIN has no privileges on the EBA schema.
What do I need to do in order to delete this application?
Thank you.
Francois

Hi Francois,
You could try to login in SQLPLUS the way you did when you imported the application and then run the following code.
BEGIN
    APEX_INSTANCE_ADMIN.REMOVE_APPLICATION(xxx);
END;Where xxx is the Application ID.
Kees Vlek
ps: Apex 3.2? Time to upgrade...
Edited by: kvlek on 22-mrt-2013 9:53

Similar Messages

  • I have league of legends music running in the background when 1. did not even open the application, and 2. i deleted the application long ago. Can someone help me fix this so it doesn't bug me!!

    For the last two months, when i am working some league of legends music (i think it is) pops up in the background and the only way i can turn it off is by restarting the computer. It is driving me nuts. Why does it do this when i've deleted the application ages ago and how do i fix my computer?

    Please help me people, im a dumb uni student after all!

  • Sync so slow and deleted my applications. Help!

    guys, i got iphone from my friend and he told me to put images and videos in it, so i downloaded the iTunes, the latest, and i connect iphone to pc, btw~ its iphone(original), then the sync of files begins, it took so long, i think 60-90 minutes, i dont know why it needs to be sync before putting files.. after the sync, it started deleting my applications, so the half way through i canceled it and checked the iphone, some apps were deleted.
    i checked at other sites that those files which are deleted are in the temporary folder, which i have already checked, and those were 1k+ files.
    my questions:
    1. how do i export the files(applications, etc.) in the temporary folder to the iphone?
    2. when i connect the iphone to pc, does it have to sync everytime i connect?
    3. before i can put my photos and video files from pc to iphone, i need to finish the sync and the deletion of the apps?
    4. also, i have the installer of the iphone application, how can i install it in iphone?

    Have a read in here for a few bits of handy help.
    http://discussions.apple.com/message.jspa?messageID=5922447#5922447

  • How do you delete an application that is run only ? (Apex 3.1.2)

    Hi,
    There must be something simple I'm missing here ...
    I've deployed an application as run only on a server and I'd like to drop it and then import a new version (I'd like to keep the application number).
    But, from the application builder I don't get the option when I click on it ... how is this done using the screens or do I need to use sqlplus and an API call ?
    Steve

    If you just want to delete applications set to 'Run Application Only', 2 possible methods (method 2 is much easier, but relies on use of SQL Developer):
    1) The first method involves firstly changing the status back to 'Run and Build', which must be done in the APEX instance administration application, then going back into your workspace and deleting the application(s). So login to the APEX instance administration module (you'd need to have instance administration access), go to 'Manage Applications > Build Status' and click on the Edit icon of the application you eventually wish to delete. On the next page change the status to 'Run and Build Application'. Then you can log back into your workspace and delete this application as normal.
    2) Use the SQL Developer integration to do this. In SQL Developer, open a connection to the parsing schema defined for your application. Then you'll see an Application Express node within that connection. Expand this and you'll see a list of applications (regardless of status). Locate the application you wish to delete and right click on it, select 'Drop' and click 'Yes' and your done.
    Anthony.
    http://anthonyrayner.blogspot.com

  • HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS

    HI ALL SINCE TWO DAYS I AM DOWNLOADING VIBER BUT I AM NOT HAVING MY ACCESS CODE AND EVERY TIME I DELETE THE APPLICATION AND DOWNLOADING IT AGAIN BUT ALWAYS THE SAME RESULT PLEASE I NEED YOUR HELP FOR THE ACCESS CODE.MY PHONE NUMBER IS 0022996969896.THANKS IN ADVANCE

    try this website this should help you http://helpme.viber.com/index.php?/Knowledgebase/List/Index/1/iphone

  • I have deleted mail application, pl help

    by mistake I have deleted mail application in my os 10.5.8

    Did you check the Applications folder. Perhaps you just deleted it from the dock.

  • Error During Delete Of Application:ORA-01000: maximum open cursors exceeded

    Hello All.
    I am using Apex version 3.2.0.00.27. I am trying to delete an existing application (App_ID 116). I am continually getting ORA-01000: maximum open cursors exceeded.
    Prior to deleting this application, I attempted to, instead, import (that is, replace) this app with a previously saved Apex app (APP_ID 116). This previously saved app is also at the same version. I get the same error. At that point, I figured that I would delete the app and then import my previously saved app, only to get the same error.
    I then attempted to import the previously saved app as a new APP_ID (256). This time, the app imported without error.
    Does anyone know what is going on? Could it be that my existing app 116 is "corrupted" (whatever that means)? Why can't I delete or import over my existing app 116?
    Any help would be appreciated.
    Thank you.
    Elie

    Post Author: amr_foci
    CA Forum: Information OnDemand
    its a database related Error and it can be fixed
    please check this link
    http://publib.boulder.ibm.com/infocenter/wasinfo/v4r0/index.jsp?topic=/com.ibm.support.was.doc/html/EJB_Container/1040875.html
    good luck
    Amr

  • Creating a simple image application in Apex

    select
    "IMAGE_ID",
    <img src="#OWNER#.deliver_thumbnail?p_image_id='||IMAGE_ID||'"/> thumbnail,
    "FILENAME" from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) >
    Its is showing an error
    showing only the coding part when i run the application instead of showing image....
    can you please help me rectify the error
    Edited by: 880021 on 17-Aug-2011 20:58

    Creating a simple image application in Apex
    Create a new application from scratch. Name it ORDImages_images.
    Add a Report and Form Page based on your ORDImage_images table. Ensure that you select a Classic Report (i.e. not Interactive, which is the default). As expected, two pages are created.
    Continue to create the application and then run it.
    After the login page, there will be spurious entries for image and thumbnail.
    This is expected because of the ORDImage columns in the images table.
    Edit Page 1 and open the Images Region
    The Source entry is
    select
    "IMAGE_ID",
    "IMAGE",
    "THUMBNAIL",
    "FILENAME"
    from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) > 0
    In SQL Developer, create the deliver_images_thumb procedure
    CREATE OR REPLACE PROCEDURE deliver_thumbnail(p_image_id IN NUMBER) IS
    l_thumbnail ORDSYS.ORDImage;
    BEGIN
    -- Fetch the thumbnail from the database
    SELECT thumbnail
    INTO l_thumbnail
    FROM ORDImage_images
    WHERE image_id = p_image_id;
    -- Check update time if browser sent If-Modified-Since header
    IF ordplsgwyutil.cache_is_valid( l_thumbnail.getUpdateTime() )THEN
    owa_util.status_line( ordplsgwyutil.http_status_not_modified );
    RETURN;
    END IF;
    -- Set the MIME type and deliver the image to the browser.
    owa_util.mime_header( l_thumbnail.mimeType, FALSE );
    ordplsgwyutil.set_last_modified( l_thumbnail.getUpdateTime() );
    owa_util.http_header_close();
    IF owa_util.get_cgi_env( 'REQUEST_METHOD' ) <> 'HEAD' THEN
    wpg_docload.download_file( l_thumbnail.source.localData );
    END IF;
    END;
    Then
    GRANT EXECUTE ON deliver_thumbnail TO PUBLIC;
    Return to Apex and change the Source entry to
    select
    "IMAGE_ID",
    '<img src="#OWNER#.deliver_thumbnail?p_image_id='||IMAGE_ID||'"/>' thumbnail,
    "FILENAME" from "ORDIMAGE_IMAGES"
    where
    instr(upper("FILENAME"),upper(nvl(:P1_REPORT_SEARCH,"FILENAME"))) > 0
    Apply changes and run the application
    You can now search on substrings of filenames. Note that the image_ID is not shown. To rectify this, Edit Page 1 and open Report in Regions.
    Edit the image_id and under Column Link, change the Link Text to #IMAGE_ID#. Also change the Heading in the Column Attributes to Image ID.
    Apply the changes and re-run.
    Clicking on the image_id link takes you to Page 2 – the form for that image.
    Page 2 is sparse so reveal the image_id by Editing Page 2 and opening the P2_IMAGE_ID Page Item. Change Display as Hidden to Text Field. Apply changes and re-run.
    In Page Items, open and delete the P2_THUMBNAIL item.
    Open the P2_IMAGE item.
    Under Name, change the Display As entry to Display Image (from the select list).
    Under Settings, change the Based On entry to BLOB Column returned by SQL Statement
    Enter
    SELECT i.image.source.localdata
    FROM ORDimage_images i
    WHERE image_id = :P2_IMAGE_ID
    as the SQL Statement
    Apply changes and re-run the application
    Making an image clickable
    Edit Page 1 and open Report in Regions. Edit THUMBNAIL and under Column Link, insert
    <img src="#OWNER#.deliver_thumbnail?p_image_id=#IMAGE_ID#"/>
    as Link Text.
    Select Page 2 as the Target Page in this Application.
    Finally, set Item 1's name to P2_IMAGE_ID and its Value to #IMAGE_ID#
    Removing the Spreadsheet link
    Under Report Attributes, set Enable CSV Output to No

  • How to Import 3.0 application in APEX 3.2?

    How to Import 3.0 application in APEX 3.2? These two are on two different machines. It is not upgrade.
    Pls help.

    Hello,
    APEX supports backward compatibility. It means that 3.2 version can run any application that was developed in earlier versions.
    In your case, just export the full application from 3.0 and import it in the 3.2
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Forthcoming book about APEX: Oracle Application Express 3.2 – The Essentials and More

  • How to delete the applications in the "Updates" tab at the lower right part when you open the App Store?

    Hi, I bought the new Itouch 5 recently, i'm just wondering how can i delete the applications in the "Updates" tab at the lower right part when you open the App Store? I just want to delete the applications that i've already deleted but it seems that it is still posted at the "updates" tab ad i can't delete it. Please i need your help. Thank you for those who will reply.

    Try turning off &amp; on your iPod (sorry if that sounds dumb, but it might work)
    Or, since that's a matter of not refreshing, turn off your wifi&amp; reconnect
    Hope this helps

  • Deleting Planning Application in 9.3.1?

    Trying to delete a planning application in 9.3.1. I try both methods that is stated in the help topic. I did both in workspace and planning web (logon to another planning app to delete the one i want to delete). In workspace i did Navigate->Administer-> classic application administration->planning administration. in planning web i logon to another planning app did Administration->Delete Application. I selected the application and delete application. I get a application successfully deleted.
    But when i go back on planning web i see the application in the drop down list when i first logon. and this is present in workspace when i do Navigate->Administer-> classic application administration->planning administration. giving me a list of existing planning application.
    I try to delete the datasource for this planning application but i am unable since it still associate to this planning application that i'm trying to delete. is there a step that i'm missing? I just want to completely delete this planning application and it's association to anything to it.
    robert

    Hi,
    Sounds like you are doing everything correctly, you may have to remove it manually.
    To do this.
    1.Delete the application from AAS if it still exists.
    2.Stop planning server
    3.Go into the planning system database (the database you created when you first configured planning)
    4.In the table :- HSPSYS_APPLICATION delete the record which relates to your planning, take a note of the app_id
    5.In the table :- HSPSYS_APP_CLUSTER_DTL delete the record with the app_id from step 4.
    6.In the table :- HSPSYS_PROPERTIES delete the records with property_id that is the same as the app_id from step 4.
    7.In the table :- HSPSYS_DATASOURCE modify the app_id field the id you will have noted in step 4 and change the value to -1
    8.Restart Planning
    You application should of been removed from the dropdown, now you can use the same datasource again or you can delete the datasource.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to delete HFM Application Tables in SQL

    Hi Gurus
    1.How to delete HFM Application Tables in SQL?
    Manually its deleting but each application having 120-150 tables? how to do this in a single shot?
    I have deleted few applications using workspace/ shared services, but still its showing under HFM server under SQL Tables.
    Please help me
    regards
    Smilee

    Hi Smilee,
    1. If the application can be opened in Financial Management web interface, go to the Manage Taskflows module and make sure that no taskflows still exist for this application. Delete any existing taskflows.
    2. If the application exists in Shared Services, right click on the application in Shared Services and try to delete the application from there
    3. Stop Hyperion Shared Services and all Financial Management Windows processes and take backups of the relational database schemas of both.
    4. Check the relational database repository of Hyperion Shared Services, in the table "ces_apps" and make sure that there are no more rows containing the appname "EXAMPLE". If row still exists you should seek help from Oracle Global Software Support to clean up the Hyperion Shared Services before proceeding.
    5. It is possible to remove all content for a deleted application from the Financial Management relational database. Extreme care should be taken when manually manipulating database tables as permanent damage can be done to the intended application and other applications if the wrong content is deleted.
    a) Begin by deleting all tables, indexes, sequences and package objects that begin with the application name
    b) Delete any tables beginning HSV_appname_xxxxxx
    c) Delete any rows from the HSX_CLUSTER_xxxxx tables referring to the application.
    d) Delete any rows from the HSV_ACTIVITY_KILL_USERS, HSV_ACTIVITY_NO_ACCESS, HSV_ACTIVITY_SESSIONS and HSV_ACTIVITY_USERS and HSV_USERS_ON_SYSTEM that refer to the application name.
    d) Delete the row containing name of the application from the HSX_DATASOURCES table.
    6. The next time all the Hyperion services are started again, the application should be safely removed from Windows client.
    You can contact your DBA to write a query on how to delete it.
    Hope this helps,
    Thank you,
    Charles Babu J

  • How can i Delete an application for  work space

    HI
    Kindly help me to delete the unwanted application from the workspace.
    Thanks

    Hi,
    In application Builder Click on application which you want to delete.
    At right side of your application there is one window named task,under this click on delete this application.
    thanks,
    jitu

  • Error deleting an application from Essbase

    Hi, I have an unused application called "Test" in our production Essbase. I wanted to delete this application and I tried doing so. It gives me the following error. Cannot delete application - object BUILDGEN locked by user Calgon How do go further in deleting? Thank you for your help, PKAJA

    What OS are you running? I noticed this on an AS/400 setup Essbase 6.0. It seemed that there was an exclusive lock created for an Essbase object. After many different tries, like renaming application, creating objects, I was forced to delete all items from the file system.Does anyone have some insight as to why this happens?

  • Error importing APEX 4.0 application into APEX 4.1

    Hello,
    I'm not sure it has anything to do with APEX versions, but when importing a APEX 4.0 application into APEX 4.1, I get the following error:
    ORA-00942: table or view does not exist
    DAD name: wluapex
    PROCEDURE : wwv_flow.accept
    URL : http://harpo.wvnet.edu:9954/pls/wluapex/wwv_flow.accept
    PARAMETERS :
    ===========
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle-Application-Server-10g/10.1.2.2.0 Oracle-HTTP-Server
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=9954
    SERVER_NAME=harpo.wvnet.edu
    REQUEST_METHOD=POST
    QUERY_STRING=
    PATH_INFO=/wwv_flow.accept
    SCRIPT_NAME=/pls/wluapex
    REMOTE_HOST=
    REMOTE_ADDR=184.13.119.210
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTPS
    REMOTE_USER=APEX_PUBLIC_USER
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=416883
    HTTP_CONTENT_TYPE=multipart/form-data; boundary=---------------------------7db702cc602f8
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)
    HTTP_HOST=harpo.wvnet.edu:9954
    HTTP_ACCEPT=text/html, application/xhtml+xml, */*
    HTTP_ACCEPT_ENCODING=gzip, deflate
    HTTP_ACCEPT_LANGUAGE=en-US
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=ORA_WWV_REMEMBER_UN=WISERS:WLUTEST; ORA_WWV_USER_71401175607832=63F8D4BD93EE9776
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=https://harpo.wvnet.edu:9954/pls/wluapex/f?p=4000:460:4154733060059762::NO:460:F4000_P56_CREATE_OPTION,P460_FILE_TYPE:IMP,FLOW_EXPORT
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=1319804299:129.71.2.217:3530870:0:7033,0
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=wluapex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wpg_document
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=/pls
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    Any ideas on what may be causing this error?
    Thanks,
    Bob

    We contacted Oracle Support and their answer is below:
    ===================
    Yes you can import the Application that is created in Apex 2.0 to Apex 3.2
    While performing the import please review the below documents, which may help you.
    How to Upgrade / Migrate from APEX 2.2.0.00.32 to 3.1.2 (Doc ID 578630.1)
    After Export / Import Of Workspace, There Are No Applications (Doc ID 358858.1)
    ORA-942 When Importing Applications or Workspaces in APEX (Doc ID 1333062.1)
    ===================
    I will close my thread. Thanks, Diane

Maybe you are looking for