Does APEX have Enterprise Manager or iSQL*Plus web apps/listeners?

I just finished as T.A. on a course in database security. The course has the students download the full Enterprise database to explore Oracle features, including Enterprise Manager operations.
I just installed the App Express Edition database, and it sure is nicer to install, so I would like to recommend it to the instructor for future use. However, the course depends heavily on the Enterprise Manager web console, and I can't find that in this install. The course also uses iSQL*Plus a little but mostly regular SQLplus.
What's the story -- any recommendations?

OK well I think I understand now. I am not really asking about "Application Express" because I think that may refer more precisely to the application development service that has been called WebDB and HTMLDB in the past.
We want our students to use the Enterprise Manager web interface to get some hands-on experience administering Oracle. This is installed and launched in the Windows installation of the 10g non-"Express Edition."
I have downloaded Express Edition and found the install much better suited for casual users like our students. It has a slightly simplified admin interface off the Express web page. However, I don't see any indication it has the full Enterprise Manager which we need for our students.
Does it have EM?

Similar Messages

  • How does Apex access and manage db objects in other schemas?

    I'm looking for a description of how Apex accesses and manages database objects in other schemas.
    I'm sure I've seen such a description somewhere earlier but am unable to find it again...

    Hi Rene,
    When you are connected to sqlworkshop, it is basically connected to the sceham owner of the workspace. If you execute the query
    select sys_context( 'userenv', 'current_schema' ), user,  username from user_users;you would see the schema and user(currently connected) and schema owner through which you have logged in. The user will have all the privileges granted to schema owner. So basically you get connected through APEX_PUBLIC_USER and it has all the privileges of the schema owner.
    In order to run scripts in another schema you would need grants on other schema same like you are connected to user A through sqlplus and wants to create objects in schema B. For example lets say you want to create a table in schema B and you have create table privileges in scehma B , you can execute command create table B.emp as select * from A.emp;
    I hope this answers your question.
    Regards,
    Manish

  • HT203167 What software does Apple have to manage Dvd to ipod conversion etc

    what apple software supports Dvd to ipod/ipod to computer conversions etc

    Bigdog30 wrote:
    what software does apple have to replace DVD Studio Pro.
    Afraid they don't have anything to replace DVD SP. Your alternatives are Adobe Encore (which is EOL) or Toast, or IDVD (which can still be found in boxed sets of iLife).
    But getting back to DVD SP and your data transfer, what do you mean by that? What exactly did you do and what happened with the application? I'm running it on 10.7 and it works, but it's from the FCS3 suite; is yours FCS2?.
    Russ

  • Enterprise Manager can't show web-service in the web-services area

    I'm deploying my application(stateless web-service) it work's well, but Enterprise Manager show that it's not a web-service, it can't show application in the web-services area, this fuсking server have many-many-many bugs and errors (fuсking developers was drunken a lot, imho), documentation's have many errors too, and I hate this server, but I need to use it on my work :-(
    p.s. read documentation's carefully it have many errors.
    p.p.s. From Russia with LOVE! Russian developers are the best from the best!

    Hello,
    Could you be more specific about the version of OracleAS you are using?
    - which exact version ? (10.1.3.x, 10.1.2.x or 9.0/x)
    - which kind of Web Service are you developing? (J2EE 1.4/JAX-RPC or earlier version)
    Also if you find bug in the documentation or product please send let the Oracle Support Service knows.
    Regards
    Tugdual Grall

  • Possible to have two login configs in same web app?

    Sorry for not having tried this first, my server and webapp are in a state
    of flux at this moment, but I wanted to see what the consensus is out there,
    not just whether I can or cannot make something work quickly.
    If I have two types of things that might be called in my Web App (WAR) in
    different ways (eg, browser accessing via HTTP by users that want to login
    via pretty forms, and SOAP clients that may access functionality through the
    same servlets (but with alternate Servlet Path Info after the servlet name
    in the URL)), is there ANY way I can have multiple login configs, each tied
    to a different security constraint within that web app?
    In other words, with a servlet of /frazzleblitz and security constraints
    like:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    and the SOAP constraint (for all users of incoming SOAP requests):
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    where my frazzleblitz controller knows whether the incoming request is
    browser vs SOAP based by the path info after the servlet name
    Can I associate the first security constraint with a FORM based login
    config, and the second security constraint with a BASIC AUTH login config
    since I could in theory require SOAP clients to send in credentials in a
    HTTP BasicAuth header, but I can't expect a SOAP client to be HTTP
    Redirected to a login form and then to enter the right credentials into a
    user type form and then be redirected back to an app...
    Seems to me the J2EE Security spec is really lacking in the area of
    programmatic authentication (allowing my SOAP code to get credentials out of
    the request envelope and call an API to login myself). Yeah, WebLogic has
    the ServletAuthentication weak() API, but these apps need to be J2EE
    compliant and work across J2EE servers... Anybody know of any improvements
    coming in the J2EE security space to address such functionality needs?
    Thanks in advance
    Mike

    Sorry, hit send accidentally before finishing the second security
    constraint - I've fixed it up below to reflect what I meant...
    "Mike" <[email protected]> wrote in message
    news:[email protected]...
    Sorry for not having tried this first, my server and webapp are in a state
    of flux at this moment, but I wanted to see what the consensus is outthere,
    not just whether I can or cannot make something work quickly.
    If I have two types of things that might be called in my Web App (WAR) in
    different ways (eg, browser accessing via HTTP by users that want to login
    via pretty forms, and SOAP clients that may access functionality throughthe
    same servlets (but with alternate Servlet Path Info after the servlet name
    in the URL)), is there ANY way I can have multiple login configs, eachtied
    to a different security constraint within that web app?
    In other words, with a servlet of /frazzleblitz and security constraints
    like:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Foo</web-resource-name>
    <url-pattern>/frazzleblitz/doFooBar</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>FoobarBrowserUsers</role-name>
    </auth-constraint>
    </security-constraint>
    and the SOAP constraint (for all users of incoming SOAP requests):
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Bar</web-resource-name>
    <url-pattern>/frazzleblitz/doSOAPRequest</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>SOAPUsers</role-name>
    </auth-constraint>
    </security-constraint>
    where my frazzleblitz controller knows whether the incoming request is
    browser vs SOAP based by the path info after the servlet name
    Can I associate the first security constraint with a FORM based login
    config, and the second security constraint with a BASIC AUTH login config
    since I could in theory require SOAP clients to send in credentials in a
    HTTP BasicAuth header, but I can't expect a SOAP client to be HTTP
    Redirected to a login form and then to enter the right credentials into a
    user type form and then be redirected back to an app...
    Seems to me the J2EE Security spec is really lacking in the area of
    programmatic authentication (allowing my SOAP code to get credentials outof
    the request envelope and call an API to login myself). Yeah, WebLogic has
    the ServletAuthentication weak() API, but these apps need to be J2EE
    compliant and work across J2EE servers... Anybody know of anyimprovements
    coming in the J2EE security space to address such functionality needs?
    Thanks in advance
    Mike

  • Does Apple have any plans on making an Iphone app to control Logic Pro like Motu has done for Digital performer? They make it for free which is a HUGE plus!

    i was wondering if Apple has any intentions on making an Iphone/Ipad app to remotely control Logic like Motu has for Digital performer. Motu has it available for free which is a huge plus but Id be willing to pay for one if Apple came out with one of its own.Im a little mift as to why it hasnt been done, Im sure they are capable of it.

    I've been using Touch.OSC, from Hexler. It is not created by Apple but works like a charm on Logic. I've been using the app for over a year both on my iPad and my iPhone. Check the app on Hexler @ http://hexler.net/software/touchosc. Another app (which I still haven't tried) is lpTouch. You can get more info at http://www.delora.com/delora_products/lptouch/lptouch.html. Both are sold at App Store for $ 4.99. Yeah, it would be cool if Apple included its own iPad/iPhone app to control LogicPro on a future update... but for the stick price of the apps I've mentioned you might have a good 'bang for the buck".

  • New Azure Database does not have a manage button

    I just created new azure databases on a new Azure subscription. Everything appears to be in place except the Manage button is missing in the portal (both the old one and the new one). The manage button is displayed on the old subscription. I
    made sure my IP address is tied to the new server.
    Is there something else that needs done?

    Hi,
    Did you create a V12 Database?
    The manage button that links you to the Azure SQL Database Management Portal
    (http://yourservername.database.windows.net) is not supported by a V12 Azure SQL Databases.
    For more info, take a look at the Limitations section of this article:
    http://azure.microsoft.com/en-us/documentation/articles/sql-database-preview-plan-prepare-upgrade/
    Microsoft recommends Visual Studio 2013 Community Edition ( A Full Featured IDE - FREE! ).
    Download link here: https://www.visualstudio.com/products/visual-studio-community-vs
    In visual studio 2013, you'll have about the same capabilities as the old Azure SQL Database Management Portal.

  • Hey does anyone have any suggestions on a good messaging app to use? (the last few i tried sucked horribly)

    i have tried several messaging apps and they all were terrible when i wanted to send mms messages i tried "go" and i just did not like having all the "extras" they try to get u to download with it. right now I am using verizon and its decent but laggs a bit.  I have the razr maxx so any suggestions would be great.  (I am also looking for a decent calender app as well so thanks, for any sugg yougive)

    HANDCENT is one of the more popular one
    Touch Calendar is the Calendar App I use - as I sync it with OUTLOOK on my PC & Google

  • My iSQL*PLUS web interface has crashed

    I had recently installed Oracle 9i release 1 with Apache Server 1.3. Since I had to work on PHP I upgraded my Apache Server to 2.2.4 version. Now I cannot use the web-interface of Oracle. How can i restore it back? I tried uninstalling Apache and Oracle and then reinstalling Oracle again. But no help.
    Please do let me know how can i sort this out!!
    Arindam
    [email protected]

    edit file :
    $ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/isqlplus/isqlplus/WEB-INF/web.xml
    look for :
    <session-config>
    <session-timeout>15</session-timeout>
    </session-config>
    and replace it by :
    <session-config>
    <session-timeout>180</session-timeout>
    </session-config>
    to get 3 hours time out
    more information at :
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14357/ch2.htm#sthref466

  • Getting started: Enterprise manager? (Solaris)

    Hello all, firstoff let me apologize for likely an inabilty of myself to 'get a clue.'
    I just finished installing the Oracle 8.1.5 Enterprise Edition Devel copy that came with an earlier version of Solaris (think was 8.0?) that I still had on my Solaris 9 (Intel) box.
    All seemingly went well. Was alot of work for a dba novice (I am a c++ developer) like myself.
    I now figured I'd read the admin section (seemed small) and create users (well, mainly 2, me and a general purpose app user) to begin with.
    Since this took me hours :P to install, I grabbed an old Oracle in 21 Days book (old version) and skimmed for how to do this. Lo and behold I saw "Enterprise Manager" OOOO - a GUI!!!! (Yes, I am a Windows guy who works on Solaris) but I couldn't see a ref to it in the install docs, so I tried installing OracleClient product.
    Nothing I could decipher in $HOME_ORACLE/... So I look on Oracle site hoping to spot a Windows client and try that (although I'd prefer to do this via EXCEED connection to my Solaris box) but I see only 8.1.7 as the "archive" download for the client.
    Questions:
    1. Anyone know if there is a Solaris GUI for Admin that comes with 8.15?
    2. How do I access it within Solaris 9 (Intel) XWindows GUI?
    3. Can I get a client for my XP box (I guess NT/2000?) that also lets me do this if I want to under XP?
    4. Does the 8.1.7 client work with older Oracle Server install?
    Basically I am trying to bone up on Oracle stuff because the job market here in NYC, esp post 9/11 is pretty harsh and I need to be sharper than before.
    Any help would be appreciated by me (and hehe, my family by extension.)
    Thanks,
    Dan
    ([email protected])

    Thanks to you both :)
    I was not able to find, "oradim" or "oemapp" (tried a find . | grep -i <both of the above> and nothing found)
    I have Solaris 9 x86. I have an older Oracle 8.1.5, it was a free copy that came with my older Sol8 or Sol7 dev editions (think 8)
    I am wondering if it simply doesn't contain Enterprise Manager (I installed typical Server, Client and Programmer) I use CDE as my main login and I have Exceed access to the box from my Win XP Pro box (setup only for workgroups)
    I see in downloads, only downloads of Ora8 or 9 from Win boxes, Linux on one version and Solaris >SPARC< systems.
    So it looks like there is not an available version (free dev edition) for me to get if my 8.1.5 does not have the manager tools. I really don't have much personal use for Oracle, because of this and the need to "just set it up" so I can get back to refreshing my java to oracle and c++ to oracle programming - I was hoping for an easy UI to add users and config whatever I needed db-wise.
    At work, I have created tables, indices, procs etc - but I have no idea where this was done as all I knew is my 'magical' user login and used wherever that sent me to create my program's tables.
    If the easiest way to do this is to download some version avail in downloads for installing the actual DB on my Sol9x86 box and another client or client and EntMgr app on my XP box, I'd like to know what to exactly download ;)
    If not, I will need to pore thru manuals to take the 'default' db created when I installed 8.1.5 and add myself plus one or 2 other 'user' accounts and see what I can create (named the db 'prod' out of work nostalgia ;)

  • Newbie Oracle Enterprise Manager 11g feature availability question

    Newbie question here. I am new to Oracle 11g and new to this forum. I ran a search on this question and came up empty so hopefully there is a kind and knowlegable soul wo can help.
    I recall in earlier versions of Oracle Enterprise Manager for earlier versions of Oracle there was something called Oracle Enteprise Manager Reporting accessible from the OEM web.
    One of its key features was the ability to make custom "Additional Reports". In our current environment this is installed and works great. I don't know if it was an add on to OEM, or if it was built in. It was built a long time ago and I wasn't arround for that build. All I know is it works and it suits our needs.
    Well we are now trying to build a new Oracle dev box to replace the current dev environment. We would prefer to not lose any existing functionality we have... and if possible not have to reinvent the wheel. The new box has Oracle 11g.
    **Here comes the dumb newbie questions. **
    Does Oracle 11g Enterprise Manager support 9i-style Enterprise Manager Reporting and Custom Reports?
    Is it called that in 11g or has it been renamed to something else?
    Is it it a simple matter of configuration or is it an add on that needs to be installed?
    Any help would be most appreciated.
    Thanks,
    Wayward Oracle Newbie looking for an Oracle Home

    Oracle 11g does not support 9i-style custom reports. There is a new reporting framework - Information Publisher available in Grid Control 10+ versions. The new reporting framework does support custom reports as well. Click on the Reports tab to access the functionality.
    Regards,
    Leslie

  • 10g and Oracle Enterprise Manager

    Hi,
    I have installed 10g rel2 but it does not contain 'Enterprise Manager Console', is it gone from 10g?
    After my laptop has been restarted, I am no longer able to access 'Database Control' with URL http://localhost:1158/em how do I start that webapplication?
    I can access and login to iSQLPlus, but not able login to iSQLPlus/DBA what is the username and password for the security pop up (sys and system password did not work).
    Thanks in advance for any help.

    Start the OracleDBConsoleXXX service from Windows Service
    Or
    From the commad prompt for both Unix and Windows
    emctl start dbconsle
    When you are using iSQLPlus/DBA, you are trying to connect to the database. That means you have already created a database user to connect with. Or use the password of the users (system, sys or sysman) you specified during database creation

  • Cannot start Enterprise Manager for Fusion Middleware 11g

    Dear all,
    Because I want to install Oracle EGRCM v8.0.1 in Linux x86_64, so I installed Oracle Weblogic 11gR1 and SOA Suite 11g first.
    After installation successfully, I created a base_domain as default, and can start weblogic administration server ( http://localhost:7001/console ) successfully.
    Now I want to use Enterprise Manager for Fusion Middleware 11g. Per "*Oracle® Fusion Middleware Administrator's Guide 11g Release 1 (11.1.1)*", the EM should be available now and the access URL should be http://localhost:7001/em . But when I try to access it, the following error returned:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    +10.4.5 404 Not Found+
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    So I try to start with emctl in *$MW_HOME/oracle_common/bin/*, the error is as following:
    +./emctl: line 387 /d02/Middleware/oracle_common/perl/bin/perl: No such file or directory+.
    I check the path and find out that no directory named "perl" under */d02/Middleware/oracle_common*. So I try to copy the necessary dir from the dir installed Oracle Database 11g ( *$ORACLE_HOME* ), but it returns following error:
    OC4J Configuration issue. /d02/Middleware/oracle_common/sysman/j2ee not found.
    I try to copy necessary dir from *$ORACLE_HOME* but still cannot start EM.
    Please give some advise about how I can start EM for Fusion Middleware 11g, any idea is appreciate!
    Best Regards,
    Kenny Wang

    Ravi Jegga wrote:
    Hi Kenny
    See this post of mine: Re: Fusion Middleware Console
    For any SOA Domain, unless you have Enterprise Manager Facet enabled (during domain creation process or adding later on by extending it), you will not be able to access the EM Console. For quick testing, open config.xml file for your domain and check the modules specially em module as shown below. It should be there. This is for one of my SOA Cluster Domains with SOA on top of WLS 10.3.2
    <app-deployment>
    <name>em</name>
    <target>AdminServer</target>
    <module-type>ear</module-type>
    <source-path>C:\beawls1032\user_projects\applications\soaDomainCluster1/em.ear</source-path>
    <deployment-order>400</deployment-order>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
    </app-deployment>
    Thanks
    Ravi JeggaHello Ravi:
    I too like Kenny experienced the EXACT same thing this morning. I was trying to figure out how to modify the formsweb.cfg and I remembered from when I install Oracle9i/10g AS a few years back, that it was on the Enterprise Manager Console for forms (different than the EM for the database). Well that's different than the consoles for Weblogic Server and Weblogic Server for Forms. I ran into the same errors Kenny did, and I followed your steps except that I did install into the domain the Enterprise Manager so when I looked at the config.xml I do see the same code that you posted above. Yet I still get the error when accessing
    http://computer:7001/em
    Also when trying to run emctl (I copied the perl directory from the database) and same error as Kenny. Any tips/clues?
    I'm running on Red Hat Enterprise Linux 5, Oracle 11g (database, Fusion Middleware).
    Thanks,
    Gio

  • Enterprise Manager for Oracle 7.3.3

    How i can have enterprise manager for database server oracle 7.3.3 ? Because i've try with OEM 9.2.0 it wasnt working.. should i use OEM release 2.0.X on it? and where i can get the OEM 2.0.X ?

    I am wondering whether Oracle 11g comes with
    Enterprise ManagerYes it does. But Enterprise Manager is a common denominator for several products.
    In 11g, "Oracle Enterprise Manager Database Control software is installed by default".
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28301/em_manage002.htm#BABCGBJF
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32002/install_overview.htm#CEGIAJCB
    or not as previous versions 9i and
    10g are having Enterprise Manager in its installation pack.If you are thinking of the java-based OEM Console, then by 11g it is definitely gone.
    http://download.oracle.com/docs/cd/B28359_01/install.111/b32006/whatsnew.htm#BGGBABGJ

  • Logging in as SYSDBA via isql*plus

    Hi all
    Just installed Oracle 10g on my computer and I am able to connect to enterprise manager, create an account and also log in via isql*plus with the new account.
    I was wondering how do i connect to isql*plus web based using a sysdba account?
    I would enter:
    Username: SYS
    PW: ????
    Connect Identifier: [Blank]
    Is that correct?
    Usually when logging in to isql i would use the following command
    conn sys/[password] as sysdba

    If it was me, I'd follow the 'configure iSQLPlus to allow logon as SYSDBA' steps in Chapter 2 of the "SQL*Plus User's Guide and Reference" manual found at http://tahiti.oracle.com

Maybe you are looking for

  • Audigy 2 ZS Platinum Pro and Inspire 5.1 Digital 5500

    Hi! Why can't i connect this digital speaker system to the external connection box of the Audigy 2 ZS? I've tried the optical as well as the coax-connection. When i run the surround soundtest in the Creative software it only gives me stereo sound in

  • Migration Assistant Does not see my Time Machine Backup disk

    I have a TM backup disk connected via Firewire that I have several months of backup on. I did a clean install of SL. When I went to restore using Migration Assistant, the MI does not show the TM backup disk. The disk is mounted and visible through th

  • Delay of Message in the Adapter Engine when put into queue

    Hi XI/PI Experts, We are having problems in the Adapter Engine wherein messages are staying longer in the AE queue as usual.  Sometimes, it stays longer in Delivering status also.  Is there any way we can monitor and try to push the message out of AE

  • Foreign currency valuation process.

    Hi Gurus, I need some help on foreign currency valuation. Can any one explain the in detail the process of month end open item valuation. I need to valuate an open item account which is in JPY and the company code currency is HKD and group currency i

  • Conditional Display in DataGrid

    Please help me with this issue ASAP : I need to display a particular image in a cell of the DataGrid depending upon the value in the data retrieved from the DB. I receive the contents of a Table from the DB and then need to display an image in the 3r