Datapump - workspace, users, application

Hi this is a newbe question.
We're looking at having a datapump job export our workspace, users, application & data.
This would done nightly.
To test, we dropped the schema, recreated the schema and imported with the datapump export.
We have a our tables, views, etc.
But we do not have the workspace, users and application.
Is there a way with the datapump to get this?
(We know we can create the workspace & schema within the apex admin interface and import the application, workspace, etc that exported using APEX. However our dba was suggesting doing it the other way.)

Hello,
Yes that won't backup your workspace or users or applications, since those do not live in your (parsing) schema, they are stored in the underlying APEX metadata.
Currently there is no easy way to automate the export of the workspaces, however you can automate the export of the applications themselves. You might find my blog post on doing that useful -
http://jes.blogs.shellprompt.net/2006/12/12/backing-up-your-applications/
Fortunately the workspace definition does not tend to change frequently, so exporting it manually (along with the users) should not be as tedious as if you had to manually export the applications.
Hope this helps,
John.
Blog: http://jes.blogs.shellprompt.net
Work: http://www.sumneva.com (formerly http://www.apex-evangelists.com)
Author of Pro Application Express: http://tinyurl.com/3gu7cd
REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Similar Messages

  • Process is not visible in BPM Workspace in Application panel 2

    Hi dear developers,
    I had a problem about BPM process. I was trying to implement this tutorial -> http://st-curriculum.oracle.com/obe/fmw/obpm/11g/r1/firstProcess/firstprocess_obpm11g.htm#t3
    And all the steps had been done. But the deployment step, i couldn't see my process on the BPM Workspace. I searched the other opinions in the forum. It's completely same with this thread -> Process is not visible in BPM Workspace in Application panel
    Nevertheless, couldn't find anything helpful. Could you help me please?
    Thanks in advance.
    Erdo

    Hi Erdo
    I hope you already ran the demo community seed app to create all the test users and groups etc in the default authenticator. If not, please see this below post:
    Re: New to BPM: How to get the tasks in the Workspace
    1. First login into bpm/workspace with domain adminstrator username/password. Then on right side, click on Adminstration link and see if you could see all the roles related to hello world app and also the users that you added to those roles.
    One other very basic thing is, you should and must deploy the TaskForms project that has all the taskdetails UI pages. I hope you did this while deploying the workflow and checking the check boxes to deploy other ui projects also.
    If seeding and getting demo uses is confusing, you can always use your own users. From weblogic console, create some extra users like weblogic1, weblogic2, weblogic3 etc with some password. Then use these users to assign to the roles from hello world app. Then login with these users. This will also work.
    Thanks
    Ravi Jegga

  • APEX log in: ERR-7621 Could not determine workspace for application (:) on application accept.

    Hi All,
    APEX 4.0
    Sometimes, I am getting the below error when I tried to logging into APEX workspace (after giving workspace name, User name and password),
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error
    ERR-7621 Could not determine workspace for application (:) on application accept.
    I found some threads related to this but in different way not exactly when I am getting this error.
    After 2 or 3 times, this error will not come and I can able to logging into workspace.
    Can anyone tell me, What is the cause for this issue??
    Thanks
    Lakshmi

    Hi Lakshmi,
    Works sometimes and fails sometimes.  Hmm. Do you have a Webserver for your APEX that is accessible sometimes and not at other times? 
    I also had this same message.  I was trying to import an APEX application when I got it. Perhaps the cause is related althought the symptoms are different. 
    Please see: https://forums.oracle.com/message/11096438
    Good luck,
    Howard

  • Error ERR-7621 Could not determine workspace for application (:) on applica

    Hello!,
    We have a simple template based report in apex, it has 2 tabs, each displays a very small, static table
    (about 30 records, 3 columns each). There is 1 user accessing apex, who is logged into the db server
    that has the apex app. We've tried several browsers, all same have behaviour as outlined below;
    When selecting either tab, we frequently get this error;
    "Error ERR-7621 Could not determine workspace for application (:) on application accept
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    OK."
    The user clicks "OK" and it takes them back to the tab they were viewing but not the one they selected
    OR sometimes it displays the wonderful, "Page Cannot Be Displayed" etc.. Refreshing browser either
    then displays the error message (above) or stays with "Page Cannot Be Displayed".
    The environment:
    Application Express 3.0.1.00.08 using PL/SQL gateway
    Oracle db 11.1.0.6
    Windows 2003 SP2
    Browsers IE(6,7,8), Chrome, FF
    Additionally APEX is very, very slow whether it errors or not and in any browser.
    Any ideas where to start troubleshooting? Thanks in advance, Donald

    Hi,
    Did you resolve the issue?
    Regards

  • Error ERR-7620 Could not determine workspace for application (38935).

    Hello,
    I have an APEX application that has been fairly thoroughly tested on my local machine... I have now deployed onto the apex hosting service as I need to link to it from my website. However, one of the links in a report on the application has stopped working. I receive the following error:
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error      ERR-7620 Could not determine workspace for application (38935).
    I've tried this on firefox and internet explorer, and I get the same error. The schema at the apex site is differently named compared to my local development environment, but otherwise I think the installations are identical.
    The application is at
    http://apex.oracle.com/pls/otn/f?p=38935
    Username is john.smith, password is danny1. Once you are logged in, click on either of the links in the 'Recent Proposals' region.
    All help gratefully received!
    Many thanks,
    Danny Layne

    Danny,
    I don't know why you get that message, probably when the engine is trying to redirect to an error page. I see that your login page has a number of after-submit processes that depend on :P101_USERNAME. These are placed after the clear process which would clear P101_USERNAME, so that's one problem. The other problem is that when you authenticate to your application as a different username from the username you use to authenticate to the development environment (the Builder, etc.), you may get a different session ID for the application that you are testing (using the Run links) as distinguished from the session you have in the Builder. This is explained in more detail here: Re: ERR-1002 on login after switching authentication to LDAP (2.2) The best place to put after-authentication logic is in the authentication scheme's post-authentication process. Just edit the authentication scheme and put your process code in there (or call a stored procedure). This process is guaranteed to run in the same session as that allocated to the user just authenticated.
    The final problem to mention with putting processes on the login page (after the login process) is that they continue to run even after the "login" process redirects to the after-login page. Even if everything runs in the same session, there is no guarantee that the after-login page and its on-load events will be executed after the after-login processes on the login page.
    Scott

  • Workspace or Application Import doesn't work

    I have Oracle 11g installed on Windows Server 2003. After database installation, I made APEX upgrade from default version 3.0. to last 3.2.1. Now, when I try to import Workspace or Application, I get Internal Server Error, and browser path is http://myserveraddress:8080/apex/www_flow.accept.
    It is obviously some kind of error in some of this packages...
    Any similar expiriences? Please help!

    When I connected to SYSTEM user on my Apex BD, I realised a lot of packages and functions on APEX_030200 user are invalid. I tried to compile, but unsuccefull. I think I should reinstall my Oracle DB, or just APEX.
    Once again, can somebody help me?

  • Workspace User cannot log into workspace

    Hello Everyone,
    When I try to log into workspace as a user with Workspace User role, I get the following message "Access permission has not been granted to this user." and cannot log in.
    I have already added the user to principles with "INVOKE_PERM" permission for the specific application. But I still cannot log in as that user of Workspace User role. 
    Any help or suggestions for resolving this problem will be greatly appreciated.
    Thank you very much!

    Hi,
    you have given access to the user to invoke all operations on a service. You need to give login access.
    There are following ways to chieve this:-
    1:-In livecycle few default roles are created one of them is 'LiveCycle Workspace User'(Can log in to the     Workspace end-user application), assign this role to user.
    2:-Add the permission 'PERM_WORKSPACE_USER'(Log in to the Workspace end-user application) in your role and assign that role to user.
    Thanks
    Message was edited by: aks@lc

  • Managing Workspace Users

    I have been looking back through the apex_util APIs and notice there are a lot of API for managing workspace users. In the past the Apex team have not encouraged the use of Workspace users for application authentication schemes, is this a change in stance or would the team still recommend other authentication schemes?
    I notice that the APEX_WORKSPACE_APEX_USERS view does not include the FIRST_NAME, LAST_NAME or the ID of a user. If you wanted to build your own interface to manage workspace users, how would you do this without access to that information? I can see APIs to return the names but how do you determine the ID for a user?
    Shunt

    Hello Shunt,
    >> I can see APIs to return the names but how do you determine the ID for a user?
    The apex_util API include several options to retrieve APEX users information. You can use the ‘fetch_user’ procedure to retrieve all the available information for a specific user; you can use ‘get_user_id’ to retrieve the user ID of any user (providing you have ADMIN privileges) and tou can use ‘get_current_user_id’ to retrieve the current user ID (and compare it with your table, etc.). You can find the documentation in here - http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_util.htm#CHDIEDJH .
    >> would the team still recommend other authentication schemes?
    I can’t speak for the team (I’m not part of it) but I don’t see a connection between exposing more APEX API to the users, and any authentication schemes policy they might, or might not have. In any case, authentication policy is something that should be determined according to the specific needs of your organization. In some cases the APEX authentication can be good enough, and for others hardly enough. I believe it would be irresponsible to recommend any kind of security policy without knowing specific details of the working environment.
    Regards,
    Arie.

  • Error while creating a workspace and workspace user

    Hi Everyone
    I have installed oracle 11.1.0.7 on our server and the os is windows server 2008. I tried creating a new workspace and workspace user using the repository assistant on the server itself i mean i am using OWB which comes along with the 11g database. It is installing 60% and at the end it gives me this error:
    The warehouse builder workspace installation failed Java.Sql.SQLexception ora -00942 table or view does not exist
    How can i deal with this error? any suggestions ?
    Thanks & Regards
    Subhasree

    Hi everyone,
    I got the same problem. It is very urgent to get an answer.
    Thanks
    Siegwin

  • APEX SSO and Load balancing: Could not determine workspace for application

    We had a single HTTP Server serving APEX in a 10.2.0.2 database configured with SSO to be used by the developers. APEX has been registered as a partner application and the login url has been CA Siteminder protected so that the SM_USER details are forwarded in the header for the application to use for authorization. Everything is fine so far.
    Now we have added a HTTP Server on another host and have it all set up for APEX and its pointing to the same database. APEX_ADMIN access works as normal, but applications previously using SSO now get the following error after entering the URL.
    Expecting p_company or wwv_flow_company cookie to contain security group id of application owner.
    Error ERR-7620 Could not determine workspace for application ().
    Using HTTP Watch I find that the application is not even trying to redirect to the login page.
    What is wrong here?

    APEX has been registered as a partner application as described in
    http://www.oracle.com/technology/products/database/application_express/howtos/sso_partner_app.html
    In the meantime I found metalink document 368746.1 which describes the cause of this problem. Please read carefully what I wrote, it all works when the the new APEX web server is turned off in the server farm on the load balancer and directed through the original web server. When running regapp.sql the hostname in the listener token was using the virtual hostname. This works fine if the request comes from the original APEX server which proofs that there is nothing wrong with the installation and set up of SSO. When directing the request to the new APEX web server the APEX_ADMIN page still works only existing work spaces using SSO don't seems to work anymore resulting in a error as described in the subject.
    As for metalink document 368746.1 naming the causes of this error:
    - there are no duplicate entries in WWSEC_ENABLER_CONFIG_INFO$
    -LISTENER_TOKEN clearly works for requests coming from the first web server
    -theoretically the web server listener port could be changed from 7777, but port 80 needs to be maintained here as production is mimiced as far down as possible.
    Is there some cache table which can be cleared? How is it that the flows schema (apex engine) can not find the work space when the request comes from a new web server which can however access the APEX_ADMIN pages.
    anyone?

  • The Ipad2 Application Data folder is taking up huge space in C: Drive. How can I shift the User Application data for iPad2 to another Drive?

    The Ipad2 Application Data folder is taking up huge space in C: Drive. How can I shift the User Application data for iPad2 to another Drive?

    Thanks a lot for the response. Yes, I am checking my C: drive data thoroughly now, including the hidden folders, to ascertain if something else can be moved, as per your suggestion.

  • An OS-Intergrated place to store per-user application configuration files.

    A Chairde,
    I'm developing an application that could be deployed on multiple platforms. I'm looking for a location to store per-user configuration files in a OS-integrated way.
    I use a utility class to determine the OS of the users machine. I know from experience that Windows NT5+ likes to store per-user settings/configurations in the %APPDATA% path (which is usually C:\Users\<username>\Appdata\Roaming\<vendor>\<software> etc.) I'm using a call to the environment labels to determine it's location.
    I'm a linux user myself, so I'm aware that most UNIX based Operating Systems like to store personal configurations in hidden folders in the user's home directory (ex /home/<username>/.<application> etc.), Obviously, I'm using a call to the system property user.home to determine that location.
    My Question is in relation to Mac OS and Mac OS X, where would it be a safe location to store per-user configurations? I know OS X is BSD/UNIX based so is it safe to assume to store them as a hidden subfolder of the user.home directory? What about Mac OS classic? Where are per-user settings stored, or is it like Windows 9x and NT4 and lacks proper multi-user setups (although NT4 is somewhat more prepared then 9x) ?
    It would be much appreciated if anybody has any ideas.
    Is Mise,
    Seán Mac Aodha
    PS. I'm not using Javas Property files etc. I've rolled my own exchangeable format for storing key,value pairs.

    I've used databases in the past to store local files but clients have sometimes run into trouble when the database daemon goes down or doesnt start-up normally because of a "improper" shutdown etc.
    In my own implementation of "Settings Files" i have serialized hashtables marked with appropriate metadata stored to the users "application data", a backup or original copy of those settings in the common directory shared by my application framework and then in a networked enviroment, the Settings can be hosted on a database server, so the user can travel between client machines and keep their settings (and files) with them.
    I have, with a bit of googling, come across the most obvious page i should have looked at in regards to Apple Mac OS X
    http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/Articles/WhereToPutFiles.html
    According to Apple's guidlines, the most suitable place to store User configuration files is in the ~/Library/Application Support/<Application Name> directory.
    and for System-wide configuration files, /Library/Application Support/<Application Name> rather then storing them with the application in the /Applications directory.

  • Logoff button is not working for end user application

    Hi Team ,
    Enterprise Portal : SAP Netweaver 7.0 We have updated Support pack from SP11 to SP21.
    and in End user application log-off tab is not working.
    ALthough when we login through Administrator user it is working  fine
    Regards,
    Kamal

    Dear Kamal,
    I can think of 2 reasons:
    1. Java Version
    2. Compatibilty Mode of Internet Explorer. There is a button on the address bar next to the refresh button in IE 9.
    Regards,
    Pranav.

  • Multi user application control data access

    Dear all,
    i am using Oracle Developer Suite 10g and database 10g, windows xp plate form.
    i want to develop multi user application regarding education.
    i have two questions.
    1. i take a start from creating an HR database which have 30 tables.
    this database has 10 users.
    the users will log on from their own schema.
    how they will access the HR schema?
    should i create a public synonym for each table in the HR Schema?
    or should i create a view for each table in each user schema?
    or should i grant select,insert,update etc to each user on HR schema?
    2. i want to control the data access for each user.
    i.e. every student could access his own academic record. each teacher access his own related record, the manager the owner and so on.
    how to accompolish this task? oracle roles are not sufficient for this purpose.
    Your help is highly appriciated.

    How about you start with the basic stuff, like the 2 days developers guide:
    http://www.oracle.com/pls/db112/to_toc?pathname=appdev.112/e10766/toc.htm
    and make it to the advanced developers guide:
    http://docs.oracle.com/cd/E11882_01/appdev.112/e25518/toc.htm
    and work your way through the concepts manual:
    http://www.oracle.com/pls/db112/to_toc?pathname=server.112/e25789/toc.htm
    and everything else which sounds interesting to you in here:
    http://www.oracle.com/pls/db112/portal.portal_db?selected=5&frame=
    As for your first question this should be covered here:
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/authorization.htm#BABHFJFJ
    i want to control the data access for each user.This is also documented:
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/vpd.htm#CIHBAJGI
    cheers

  • Cluster and user application resource doubt.

    Hi,
    i've a 4 node Oracle Cluster 11.2.0.2, with some user applications resource (with relative shell for check, start and stop), about 3 per node.
    Looking scriptagent_root.log of node 4, i see that scriptagent.bin execute some check of resource of node 2 but node 2 (and node 1) scriptagent.bin execute only check of local node.
    Node 3 scriptagent.bin execute check of node 3 and node 4.
    I think that cluster is messed up.
    It's correct this situation? If no, which check i can perform?
    Thanks

    Hi,
    in my test environment (2 node rac 11.2.0.2) i've created a custom cluster resource "test_res".
    [grid@rac1 scriptagent_root]$ crsctl status res -t
    test_res
          1        ONLINE  ONLINE       rac1and root is the owner, so in /u01/app/11.2.0/grid/log/rac1/agent/crsd/scriptagent_root/scriptagent_root.log
    there are these messages:
    2012-01-19 17:45:31.048: [test_res][1318852928] {1:49712:159} [check] Executing action script: /u01/app/11.2.0/grid/crs/public/griduat.sh[check]
    2012-01-19 17:45:41.046: [test_res][1352411456] {1:49712:159} [check] Executing action script: /u01/app/11.2.0/grid/crs/public/griduat.sh[check]
    2012-01-19 17:45:51.053: [test_res][1352411456] {1:49712:159} [check] Executing action script: /u01/app/11.2.0/grid/crs/public/griduat.sh[check]In rac2, no entry found in scriptagent_root.log, so the check is performed at local node and so i think that my production cluster is messed up.
    I've taken this shell (griduat.sh) from note 1105489.1
    Another thing, if i try to stop my resource:
    [grid@rac1 scriptagent_root]$ crsctl stop res test_res
    CRS-2673: Attempting to stop 'test_res' on 'rac1'
    CRS-2675: Stop of 'test_res' on 'rac1' failed
    CRS-4000: Command Stop failed, or completed with errors.thank you

Maybe you are looking for