Database 12c certification web pages anonomolies

1) On he 12c DBA OCP  upgrade page tab Database Certification: 12c Database Administrators the mention of
"*Exams 1Z0-007: Introduction to Oracle9i SQL ,1Z0-047: Oracle Database SQL Expert and  1Z0-051 Oracle Database 11g: SQL Fundamentals I will also fulfill this exam requirement." seems illogical
2) On the 1z0-061 it is unclear if it will be offered online or protored only.  To some extent the online offerings can be an incentive to canidates to start cheating from the start, so from that sense is a bad thing.    I'm not sure accepting a 1z0-007 pass for the12c DBA OCA is a good thing ..... perhaps only if passed before 1st July??

The messaging about those exams on the upgrade page is something that is in the page template and, unfortunately cannot be helped at this time. It is messy, I agree.
Regarding your 2nd point, 061 is available as a non-proctored exam, and 007, 047 or 051 can be substituted for the 061 exam as a SQL exam requirement.
Regards,
Brandye Barrington

Similar Messages

  • Upgrading a database for a web page

    If I'm trying to use the jdbc to upgrade the information on a web page how do i go about it?

    Start by choosing a Driver
    http://industry.java.sun.com/products/jdbc/drivers
    The connect to a DB using a url starting with the jdbc protocol. Use the DriverManager.getConnection static method.
    http://developer.java.sun.com/developer/onlineTraining/Database/JDBC20Intro/JDBC20.html tutorial includes examples of this.
    Then create a statement.
    Execute the Query
    Close the Connection.
    Voila,
    Phil

  • Pushing database updates to Web Pages

    Newbie Question..
    We are looking to force Web Pages to be updated when the contents of the database have changed.
    The overhead of having the Web Page refresh every few seconds would not be acceptable.
    Pages could be supported by Cold Fusion, JSP, etc whichever is easiest to integrate with pushing data.
    Where do I start my homework / reading ?
    What are the best Key Words to use when searching for answers?

    This is the article I thought of when seeing your message - a bit old but relevant to your investigation:
    http://www.javaworld.com/javaworld/jw-03-2000/jw-03-pushlet_p.html
    Depending on what you are after, you might investigate caching - Oracle9iAS Web Cache can be invalidated from calls from a DB. Check out:
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/caching.902/a95404/intro.htm#1656
    Mike.

  • 10G database documentation HTML web pages not searchable by IE

    Within Internet Explorer (IE) 6.0, I can not use the IE find [<CNTRL> F] capabilities on the 10G database HTML documentation on technet. (I am not an IE novice) For instance, say I was interested in the "KEEP INDEX" parameter of the "ALTER TABLE" command.
    I would use the 10G Database HTML documentation for "ALTER TABLE" found at the link,
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_32a.htm#SQLRF01001
    Then, since this document is 100's of pages long, I would use IE to search the page for what I was looking for - EDIT -> FIND (on this Page). I would type KEEP INDEX in the search box and bang I should find it on the page.
    Although this works on every other web site (including the 9i documentation), IE returns the error "Error: 49 Permission Denied". How helpful is a help document that does this?
    Please correct this issue!!!!! Please don't ask me to use a PDF either, they are so painfully slow.

    Further to my earlier post, I have just read an entry noting that if you already own a domain name, and ask your hosting service to forward and mask your iWeb '08 created, web.mac.com site to your personal domain, chances are that due to the masking of the site on web.mac.com, Safari browsers interpret the masking as being the end of the site, and as such, just return a blank page?
    This may explain the problem. However, call me old fashioned, and possibly a little naive, but surely this cannot be the problem?? It's OK in Firefox!

  • How to retrieve and display image from database in a web page

    Hi all;
    I have been trying this for some time now. I have found some tutorials so far but none of them addresses my concern. Here it is:
    I have built a web application that can connect to an Oracle DB.
    I have a table called "employee", where I record any employee details, among which the employee picture. I stored the pictures and the finger prints using "Oracle sql developper" as blob type.
    How can i retrieve and view all these information when i run the application?
    I can easily retrieve all other types of value, but the image(BLOB type) has been a nightmare for me.
    HELP PLEASE.

    morgalr wrote:
    I believe your Binary Large Obejct will come back as an array of int, and you'll need to use BufferedImage it's associated API to get it to a viewable image configuration.I don't think BufferedImage immediately solves the problem -- this is a web app, so I assume the image will be displayed using the HTML IMG tag.
    Solution: google. There are many example of how to do this. For example, any book on servlets will have an example of dishing up a dynamic image.

  • Configure Database Control web page in MSCS Failover Cluster

    I have a two-node windows 2000 cluster that is managed with Microsoft Cluster Services and Oracle FailSafe Manager. The cluster works fine, so does connecting to the database with SQL; however, I have been unable to use the database control EM web page to access the database. The page appears with the Database/Instance/Listener titles but no data/information appears.
    There is a virtual host name and IP address for the cluster which I can use successfully when accessing thru SQL. I've tried the system name and the virtual cluster name in the http://<SYSTEMNAME>:1521/em web address. I've tried both without the "em".
    The emctl agent is running. The dbconsole service is running correctly.
    Which name should I use in the web address - host system name or virtual (cluster) host name? What configuration parameters am I missing?
    Any help would be greatly appreciated.
    Thanks in advance!

    Problem could be same but reason could be diffrent
    please paste the emos.trc and tell the oms version , platform.

  • Extracting text from a web page

    I want to extract information about livestock from a certain web page, and add these data to a database.
    The web page in question allows me to enter an animal's ID number, and then it displays various data about that individual animal. The format of the page is always the same, but the data vary depending on the particular ID/animal.
    What I'm hoping for is a way to quickly extract information about the current animal (date of birth, color, breeding status, etc.) from the open page, and add these to my database.
    I realize I can "cut and paste", but that is awfully slow for large numbers of data and animals.
    Since the data I need are always in the same places on the page, it seems like there must be a way to automate the extraction.
    Any ideas? Thanks in advance.
    Eric

    Here's a very rough, untested way to do it:
    (I'm at work and not on a Mac..so..Milage May Vary)
    It would be run as script.pl -i input -o output
    eg ./script.pl -i myfilea -o myfileb
    oh and the input would be a list of valid web page addresses
    eg http://www.foo.com
    --bEGIN cODE---
    #!/usr/bin/perl
    use Getopt::Std;
    use LPW::Simple;
    getopts("i:o:");
    #allows for using -i -o cl options
    open(IN,"$opt_i")||die "Cant open input";
    open(OUT,">$opt_o")||die "Cant open output";
    #opens 2 files
    while ($line = <IN>){
    #READ IN line by line
    @Doc=();
    #clear the variable Doc
    @Doc=LPW::Simple::get($line);
    #open the web page and store all the html into Doc
    foreach $docline (@Doc){
    #go through every line of text in Doc
    if ($docline =~ m/:/){
    #does the line have a : on it..if so..
    $docline =~ s/ / /;
    $docline =~ s/
    $docline =~ s///;
    $docline =~ s/<\/b>//;
    #these 4 lines remove or reformat html formatting
    print OUT "$docline\n";
    #ok its simplistic, but for now just spits out the line it read to OUT
    close (IN);
    close (OUT);

  • Can i use "Oracle Database 12c: Performance Management and Tuning " training for getting certification on "Oracle Database 11g: Performance Tuning 1Z0-054"

    i have taken "Oracle Database 12c: Performance Management and Tuning new" training from oracle university. Now i would like to get certified on "Oracle Database 11g: Performance Tuning 1Z0-054" exam. Is it possible ?

    I essentially endorse and refer you to Matthews' and John's post above.
    I would differ with slightly with Matthew because my guess is you would often be able to use like for like 12c training for an 11g certification ( I believe there are precedents).  BEFORE ANYONE ASKS THE OTHER WAY DOESN'T HAPPEN.
    .... but totally concur with Matthew you would ill advised to procede on that basis without one of:
    - This being advertised as possible on the website : e.g. https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=654&get_params=p_id:169 ... option 2 show courses.
    - Confirmation from Brandye
    - Confirmation from an Oracle Certification Support Web Ticket ( http://education.oracle.com/pls/eval-eddap-dcd/OU_SUPPORT_OCP.home?p_source=OCP )
    ... The more common (and in my opinion usually better) way would be get your 11g DBA OCP ( or higher first) and then take the 1z0-054.  I am almost certain they will accept your 12c course for the 11g DBA OCP.
    If you are choosing the route of not being a 11g (or 12c ) DBA OCP first but are on option 2 and relying on the course for certification then the issue is more in the balance and you are even more strongly advised to get confirmation before proceding (remember if the rules need to be changed for you only then any profit out of the exam is lost).
    In general my understanding is Oracle would prefer to encourage people to train on the latest version of product that is available for training  and will prefer to avoid restrictions which would cause you to train at a lower version.  ( This is simply my guess at Oracle University Policy ... personal opinion only).
    Having said all I have said I'd encourage you to go with the advice of the earlier two posts.

  • OEM Cloud Control 12c web page layout problem

    Hi,
    I've installed OEM 12c and upgraded to 12.1.0.4.2.
    When I opened the web page, the layout of web page had few problems as follows.
    Figure 1: menu redirect to a new page rather popup in the same page
    Figure 2: tables don't layout properly
    Note that I've tried Google Chrome 41.0.2272.89 and Firefox 35.0.1.
    Thanks.
    JC

    Hi,
    The action plan provided by Courtney Llamas will fix the menu direct issue
    Ref
    OEM Console Appearance change when Accessibility Preference options are Selected (Doc ID 1918560.1)
    In Continuation to this I would also recommend to always check the browser certification matrix for 12c to ensure all the console options work fine
    Below is the list for 12.1.0.4.0 cloud control currently certified browsers
    Apple Safari
    3 Releases(6,5,4)
    Google Chrome
    2 Releases(17,17+)
    Microsoft Internet Explorer
    5 Releases(11,10.*,9.*,9,8)
    Mozilla Firefox
    1 Release(13+)
    Regards,
    Rahul

  • Displaying database records in a  Web Pag

    I have built a static web site (1st in 5 years) using CS5 and the DW-CIB course.  My database is ASA11 and I have it configured so php can talk to it.   Before I start building many pages I would like to know which is the best approach to take.
    1) Should I use Spry?
    2) Will Zend be a better approach?
    3) Will learning JavaScript or jquery help?
    I have worked out that spry needs data in either xml or an HTMLDataset so I created a text file with <html> <body> <table> etc. tags plus the data. I can link this file into my web page (manually but not yet dynamically) but somehow I am not convinced this is the correct approach.
    As DW does not support ASA11 I have decided to code in PHP.
    Can someone shed some light on getting good-looking and highly functional dynamic pages?
    TIA Ephraim

    EffyRuby wrote:
    I have built a static web site (1st in 5 years) using CS5 and the DW-CIB course.  My database is ASA11 and I have it configured so php can talk to it.   Before I start building many pages I would like to know which is the best approach to take.
    1) Should I use Spry?
    2) Will Zend be a better approach?
    3) Will learning JavaScript or jquery help?
    I have worked out that spry needs data in either xml or an HTMLDataset so I created a text file with <html> <body> <table> etc. tags plus the data. I can link this file into my web page (manually but not yet dynamically) but somehow I am not convinced this is the correct approach.
    As DW does not support ASA11 I have decided to code in PHP.
    Can someone shed some light on getting good-looking and highly functional dynamic pages?
    TIA Ephraim
    1.  This has nothing to do with database records.  Spry is good and there are also good alternatives like Project Seven for menus and JQuery for effects.  It's about how you use the tools that matter.
    2. Not sure how to answer this one just yet.
    3.  See #1.
    I looked up SQL Anywhere based on the previous post and came across this ( http://m.sybase.com/detail?id=1019698 ).  That is the PHP module for SQL Anywhere databases from Sybase.    I recommend installing that on your server if it is not already installed.  This will give you the functionality to have PHP interact with the database and process as necessary.
    However, as stated in other posts, DW does not support SQL Anywhere (at least to my knowledge).  Because of this, the pre-build functions for querying a database may not work, meaning you will have to manually write queries.  This is not necessarily a bad thing, just involves a little more work.  If there are other PHP functions that you need to use within DW, they should work as advertised.  The reason I held off on answering the Zend question is because it is a completely different beast then Dreamweaver.  Depending on the application you are trying to develop and your knowledge of PHP will determine whether the Zend Studio is right for you. 

  • Have emails sent directly to a web page for database logging?

    I would like to have an email that is sent to an email address, actually be processed by a coldfuson page and inserted into my database. What's the technique behind that. Kind of like when people send videos to youtube from a cell phone. I want emails sent to me to be processed by a web page and stored in my own database. Thanks

    Use the cfpop tag to retrieve yor e-mail messages. For example,
    <cfpop
    server = "mail.myMailDomain.com"
    action="getAll"
    name="myMessages"
    username = "bkbk"
    password = "bkbk001">
    <cfdump var="#myMessages#">
    <!--- insert code to save the messages to the database --->

  • Web Page Database Help

    I have built the site www.key-services.co.uk it is a website
    promoting property management and Residential Lettings in cyprus.
    If you look at the
    Lettings Page
    you will see that i have just created images and text box's to
    display each propertys details. and when you click on it it just
    goes through to a contact form.
    now what i want to do is to create a feature where the user
    can sort the propertys by size, Price, Location Etc and when they
    click on the property it will go through to a page containing more
    details.
    I know i would need to create a database to do this but other
    than that i have no idea, bit of a newb when it comes to dynamic
    pages.
    Does anyone know of a good application that will do this for
    me, or a tutorial of how to set up a database myself.
    thanks in advance for any help received.
    *webserver is Linux, and i have access to a MySQL database
    slots with my hosting company, if that means anything.

    Hi ,
    Like your title mentioned, your case is in a web page in asp.net, it sould be posted in Asp.Net forum.
    Here is the link
    http://forums.asp.net
    This forum is only covering the C# programming language, IDE, libraries, samples, and tools.
    Please consider to reprost in that forum for better support. Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can not start Enterprise Manager web page

    I can not start Enterprise Manager web page.
    Here is my steps:
    1. Start enterprise manager
    emctl start
    Waiting for EM to initialize ...Started
    2. Check status:
    emctl status
    EMD is up and running : 200 OK
    3. Start the web page
    http://myhost:1810/
    4. get following error
    "There was no response. The server could be down or is not responding"
    System info:
    Database: 8.1.7.2
    OAS: 9.2.0.2
    JDK: 1.3.0_02
    Server OS: SunOS 5.8
    My question is where is the log file of enterprise manager and what the problem is.
    Thanks in advance
    Don

    diego,
    Thank you for your help. when I try your command I get following error:
    emctl start iasconsole
    Unknown command option
    Usage::
    emctl start|stop|status
    emctl reload | upload
    emctl set credentials [<Target_name>[:<Target_Type>]]
    emctl gencertrequest
    emctl installcert [-ca|-cert] <certificate base64 text file>
    emctl set ssl test|on|off|password [<old password> <new password>]
    emctl set password <new pwd>
    emctl authenticate <pwd>
    emctl switch home [-silent <new_home>]
    emctl config <options>
    emctl config options can be listed by typing "emctl config"

  • Web page different from opening link in a new tab or new window from Google search results

    I had been using another browser for a few months because I did not want to lose the web pages I opened within Mozilla. I began using Mozilla again after saving off the web pages. I see that Google's web page pulls in search results as I type in keywords, a feature I don't remember seeing with other browsers along with a magnifying glass icon, like a look ahead of what a web page looks like before clicking on the link.
    With the list of search results, I click on the link and tell Mozilla to open the link in a new tab. I see the google icon, "loading..." or "testing...", then results other than the link I wanted. Those other results maybe bing.com, http://66.45.255.230/click.php?c=0920f96609cb269f1d0045095c09, http://superpages.iarbiz.com/o6gIoMdG6so=-tQ1LeOu1v0kY34rDZ|oRy8Xt294ACu6X, Info.com, Supermedia Reverse Proxy (http://superpages.iarbiz.com/o6gIoMdG6so=-tQ1LeOu1v0kY34rDZ|oRy8Xt294ACu6X)or whatever else. As for the link, I managed to press stop before being redirected.
    This is with any search results listed.
    I thought it was Google.
    Changed to Instant is off.
    Nope. Still the same issue. Have already gone after malware. Tried resetting the redirect value to 0.
    Above results also occur when opening the link in a new page via right menu click.
    Copying link location and pasting in a new window is displaying results okay.
    When resuming use of Mozilla, an update was available and installed. Did not experience the above issues before the update.
    Running version 3.6.12. Running Win XP Pro SP3.
    Had to go back to IE and Chrome/SRWare Iron.
    Example:
    Google keywords: rental cars
    Clicked on Ad: _Avis_Rent_a_Car_, link is Avis.com
    Clicked on top search result: Hertz_Rent-a-Car_-_Rental_Car_Discounts,_Coupons,_and_Great_Rates (magnifying glass), www.hertz.com

    Do a malware check with a few malware scan programs.<br />
    You need to use all programs because each detects different malware.<br />
    Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and [[Searches are redirected to another site]]

  • How to send Parameters FORM to PHP WEB Page with method POST (secure)?

    Hello everyone,
    i hope someone can help me to find a solution to this problem!
    i have to send "+precious+" parameters from an oracle form to php page, like username and password, with a secure method... i tried with WEB.SHOW_DOCUMENT procedure but it uses GET Method and when the web page open up you can read those parameters in the url...no good!
    some suggestion?
    Thank a lot in advance... FMicio

    The other way you have is to make a PJC java bean ...
    which uses HTTPClient library..
    for example:
    PostMethod post = new PostMethod("http://jakarata.apache.org/");
            NameValuePair[] data = {
              new NameValuePair("user", "joe"),
              new NameValuePair("password", "bloggs")
            post.setRequestBody(data);
            // execute method and handle any error responses.
            InputStream in = post.getResponseBodyAsStream();
            // handle response.I have done a multipart form data post to upload files to my db over httpClient.. and other things...
    Or with java.net.* api-s
    try {
        // Construct data
        String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
        data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
        // Send data
        URL url = new URL("http://hostname:80/cgi");
        URLConnection conn = url.openConnection();
        conn.setDoOutput(true);
        OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
        wr.write(data);
        wr.flush();
        // Get the response
        BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
        String line;
        while ((line = rd.readLine()) != null) {
            // Process line...
        wr.close();
        rd.close();
    } catch (Exception e) {
    }Or you can call your web page (post data) from your database
    http://awads.net/wp/2005/11/30/http-post-from-inside-oracle/
    Edited by: Peterv6i on Mar 30, 2012 3:49 PM
    Edited by: Peterv6i on Mar 30, 2012 3:55 PM

Maybe you are looking for

  • Slow system and too many details after upgrading to OS/Lion

    This MacBook Pro is my right hand, I was doing so great with Snow Leopard, Now everything takes twice longer. I cleaned up, reseted, reinstalled softwares, etc. same. Too many details that doesn't work correctly. -Safari constantly needs to be loadin

  • Photos folder in my photo app on my iPhone /iPad

    Greetings. I cannot find this info anywhere In my photo app, (not iphoto) in the folder of Photos, I have some really old pictures in there. I have removed them long ago from my iPhone  under albums and iCloud But they show up under Photos and I do n

  • WebCenter Form Recognition WebVerifier directory name {Directory Path} is Invalid

    Hi I'm facing the below issue while trying to open the Web Center Form Verifier using web Verifier. The WebVerifier directory name {Directory Path} is Invalid. please contact your system administrator. OS : Window Server 2008 R2 Software: Oracle WebC

  • Bluetooth Java API on desktop PLEASE!!!

    Hi evryone! Hope you can help me. I want to develop an application on my desktop using bluetooth to connect to a mobile phone. I saw that we can't use the JSR 82 which sources is completely empty! the api being dependant on the device, it is the virt

  • Wheres the Adobe Premiere Elements 10 icon?

    I just bought Adobe Photoshop Elements 10 with Adobe Premiere Elements 10 and I have a new HP Pavillion g6, Windows 7, i5 core, 2.4 processor. The package did not have any clear instructions for installing these programs but the discs said for MAC or