OCA Java Programmer & OCP Java Prgrammer

Hi,
I saw in Oracle site that is is mandatory to get OCA(Associate) Java Programmer before the OCP(Professionnal) Java Prgrammer. but one of my friends is going to pass the OCP Java Prgrammer exam directly without going through the OCA.
Please i want to know if there is a possibility to get the OCP directly, for example for SE6 or SE7.
regards.

You friend can certainly take the exam *1Z0-804 Java SE 7 Programmer II* without having first taken *1Z0-803 Java SE 7 Programmer I*
He will find at that point that Oracle won't give him a certification until he goes back and passes the 1Z0-803 exam. There is a difference between passing an exam and becoming certified. To pass an exam, you schedule it at Pearson-VUE and answer enough questions correctly. Pearson will be happy to allow you to take any exam that you are willing to pay for.
To gain a certification, you have to complete all of the guidelines laid out on the Oracle Education website.

Similar Messages

  • 1 java test = OCP?

    I am just wondering what Oracle was thinking when they decided that taking 1 java test should get an OCP credential.
    When I got my first OCP, as Oracle8i DBA, I had to pass 5 tests. DBAs now have to pass 3 tests and take a course.
    If someone wants to certify as a Linux Administrator, they can take 2 tests, and that's only for the OCA.
    But if anyone takes the Java Programmer test, that's OCP? I passed the Java Programmer test several years ago (for Java 2), but I would never describe myself as a good java programmer; I only knew some basics.
    It seems like there's some inequity here, that makes the OCP and OCM levels easily obtainable for some (java programmers), and more challenging for others (DBAs).

    I am currently fairly busy, and the java certs are not my scene, and I haven't reseached sun info on this, but I am concerned, perhaps unnecessarily, about the integration of Sun Java Certs. under the Oracle wing.

  • Is it necessary to have an scjp certification to be a java programmer

    hi i have been programming in java for quite some time now , i have heard a lot about SCJP .
    Right now i am in college doing my grad. and java is not a part of our curriculum
    i am quite comfortable with java and want to make my career as a java programmer.
    i just want to know one thing from some professionals on the forum that is it very necessary to have an SCJP Certification if i want to apply in some big companies as a java programmer since i wont be having any other certifications that i have done java .
    please tell me if it would be good for me if i do an SCJP course
    Regards

    hi i have been programming in java for quite some
    time now , i have heard a lot about SCJP .
    In that case you should already know the answer to your stated question...
    i just want to know one thing from some professionals
    on the forum that is it very necessary to have an
    SCJP Certification if i want to apply in some big
    companies as a java programmer since i wont be having
    any other certifications that i have done java .
    Can't hurt, probably won't help either.
    please tell me if it would be good for me if i do an
    SCJP course
    Formal training never hurts.

  • Taking control back while calling stored procedure using java programme

    I have stored procedure to load data. This procedure is invoked by java program.
    The stored procedure take around 10 to 15 minutes to do complete loading of database. I want to write stored procedure when it starts loading of database at the same return the control to calling java programme so that java program can do other operation i.e. java program can not wait for control back from stored procedure.
    In short stored procedure runs in background and return control back to java program when stored procedure is invoked. Is it possible then How we can achieve this.

    U can acheive this using Java Threads. Create a thread submit this loading job. Once you submit the thread, you will get the control back to do other stuff.
    Documentation:
    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Thread.html
    -aijaz

  • Urgent! Cannot run java programme. Pls help!

    1st question:
    I am using JDK 1.3.1_03 on Win2K Server. When I have compiled the java applications, I try to use
    "java <application name>" to run the programme, but an error message "Error occurred during initialization of VM
    java/lang/NoClassDefFoundError: java/lang/Object" come up on the screen. Why is it so? It run normally in the past.
    I have upgraded Windows2K once using the Win2K Server CD recently, is it the cause of the problem?
    How can I solve it? Please help! Thank you!
    2nd question:
    I have installed JDK1.4 Final version recently. However, after I have uninstalled it, it still appear in the Add/Remove Programme list in the control panel. I have tried to install another version of JDK, see if it would replace the JDK1.4,
    but it failed. Why is it so? Now when I go to some websites designed by javascript, the Internet Explorer suddenly closed by itself. How can I solve the problem? Please help! Thank you!

    Hi,
    I got the same problem, 1st question, running the application on win NT. Is there anybady there who can help us!!!??????????

  • Problem in executing Linux command from Java Programme.

    hi everybody,
    can anybody help me to solve one problem i have.
    i want to capture the output of linux command "grep" in my java programme.but it is not working properly .(maybe this sub-process doesn't have permission to read files)
    here is my code and corresponding outputs.
    import java.io.*;
    public class BSearch
    public static void main(String kj[])
    try
    Runtime rt=Runtime.getRuntime();
    String command="grep \"hello\" -r /usr/MyDir ";               
    Process rtProc=rt.exec(command);          
    InputStream is=rtProc.getInputStream();
    BufferedReader br =new BufferedReader(new InputStreamReader(is));     
    String line =null;
    while((line=br.readLine()) != null)
    System.out.println(br.readLine());
    br.close();
    catch(Exception e)
    System.err.println("Error in command "+e);               
    it finds "hello" pattern only in BSearch.class file although if i fire this command on LINUX prompt it
    shows all the files in /usr/MyDir which contain "hello" pattern.
    java programme output :
    Binary file /usr/MyDir/BSearch.class matches.
    linux command output :
    /usr/MyDir/one.txt: hello sdfs
    Binary file /usr/MyDir/BSearch.class matches.
    /usr/MyDir/two.txt: kjsdf hello sdfsdf
    will anybody help me solve this problem.

    It may be a Problem of Catching the Echoes back from the Processes...I have a Program which Captures the Echoes..see if it works
    import java.beans.PropertyChangeEvent;import java.beans.PropertyChangeListener;import java.beans.PropertyChangeSupport;import java.lang.ref.WeakReference;/** * Implements a proxy property change listener using a weak reference to avoid memory locking that would occur if it * was a strong reference. To understand this, we hve to understand that the property change listeners themselves are * hilding onto panels and other objects with strong java references. If the panel goes away while we are viewing an * object, we have a circular emory hold situation where the panel cant be collected because it has ahold of the * property and the property cannot because it has ahold of the pane. If we use weak references instead, then the hard * link between the listener and the producer is softened to almost nothing. */public class WeakPropertyChangeListener implements PropertyChangeListener {  /**   * A poperty change support object is included here so that the listener can remove   * himself from the listeners if the reference internally goes to null.   */  private PropertyChangeSupport pcs = null;  /** Holds the weak reference to the real listener. */  private WeakReference weakRef = null;  /**   * Constructs a new Proxy object for the given support and listener.   * @param pcs The property change support that this object will be using.   * @param pcl The real listener.   */  public WeakPropertyChangeListener(PropertyChangeSupport pcs, PropertyChangeListener pcl) {    if (pcs == null) throw new NullPointerException("pcs");    if (pcl == null) throw new NullPointerException("pcl");    this.pcs = pcs;    weakRef = new WeakReference(pcl);  } /** @see <{PropertyChangeListener}> */ public void propertyChange(PropertyChangeEvent changeEvent) {    Object referrant = weakRef.get();    if (referrant == null) {      pcs.removePropertyChangeListener(this);    } else {      ((PropertyChangeListener)referrant).propertyChange(changeEvent);    } } /** Returns true for comparison to referrant or this. */ public boolean equals(Object obj) {    if (obj instanceof WeakPropertyChangeListener) return super.equals(obj);    else if (obj != null)return obj.equals(weakRef.get());    else return false;  }}// snipet public void addPropertyChangeListener(PropertyChangeListener listener) {    this.propertyChangeSupport.addPropertyChangeListener(      new WeakPropertyChangeListener(this.propertyChangeSupport, listener));  } public void removePropertyChangeListener(PropertyChangeListener listener) {    this.propertyChangeSupport.removePropertyChangeListener(listener);  }

  • What are the key points of a job nterview as a java programmer ?

    Hi,
    I would like to know what to expect from a job interview as an entry level java programmer ?
    Do you have recommendations ?
    Thank you in advance,
    Grazia

    Primarily, be honest. That is true only if you are going to be
    be interviewed by technical people. RH people don't
    care for honesty or how good you are. More than once
    I was asked in an interview:
    "Are you an Expert in java? You would say from 0%
    0% to 100% how much do you know java?"
    My usual answer is: "No. I have still a lot to
    to learn, java is a vast subject and its is very
    unlikely someone know it all, I have a good grasp of
    the sintax and of OO design but I would say I know
    just 5% to 10%". Then they make a "face" pass a
    crappy test that only deals with the simplest of the
    java concepts(usually it is clear the person who
    designed the test does not even grasp the basic), the
    last one took me 8min to answer and I leave knowing
    that one more time I did not got the job.
    As it is I never go any job if the RH is the
    he responsible for the hiring, I only get the job
    when I talk directly with technical people.
    May the code be with you.'RH'? You mean 'HR'?

  • How to create trigger through Java programm?

    I write a Java programm to create a trigger(through JDBC connection). After I run the programm, a trigger was created in Oracle 10g.But the trigger is invalid. After Compiling the trigger , a error "PLS-00103 " occured .But if I excute the SQL in SQL developer,the trigger was created successfully.
    If there is some special considerations should be taken when using programm to create trigger?
    My Java programm fragment as follows:
         public void createTrigger() throws SQLException{
              Statement stmt = conn.createStatement();
              stmt.executeUpdate(getCreateTriggerSql());
    Edited by: jerry on 2010-6-29 下午6:42

    Yes the special consideration is you shouldn't perform DDL on the fly, as it has all kinds of unwanted side effects like implicit commits.
    If I would start a company, and I discover one of my developers is writing this kind of program, I would fire him, on the spot.
    Sybrand Bakker
    Senior Oracle DBA

  • How to become a good java programmer

    Hi guys
    I have been in touch with java for 3 years but I have not learned it from basic and fundamentally, so I started to learn it from very basic. but how can I become a good java programmer? can we put the answer of this question in steps ?
    Thanks

    Alex_Haze wrote:
    Hi guys
    I have been in touch with java for 3 years but I have not learned it from basic and fundamentally, so I started to learn it from very basic. but how can I become a good java programmer? can we put the answer of this question in steps ?
    Thanks1) Get a good java book and read it from start to finish. Understand and then use every technique demonstrated in the book before moving onto the next.
    2) Develop good programming practices in general. Use resources like Code Complete and software engineering books to improve the quality of your code and development practices. This is a typical programmer's bookshelf:
    [http://www.codinghorror.com/blog/images/my-programming-bookshelf-small.jpg|http://www.codinghorror.com/blog/images/my-programming-bookshelf-small.jpg]
    3) Learn new things, always. Start witing things in J2EE. Start writing things in Swing. Even pick up a new language. Different perspectives help you see things in different ways and let you think in new directions.
    4) Pay attention to detail. Strive to write the very best code you can every time. Think constantly about how you can do it better.
    5) Solicit feedback from peers, coworkers, and quality online communities. Ask them how you can do it better. Post code examples and trust your gut if you suspect that something could be done a better way.
    6) Accept that it won't happen overnight. The road to being a "good" programmer is a long one.

  • Get Data from SAP over the Business Connector into a Java Programm

    Hallo dear community,
    i would like to receive data from the sap over the application business connector into a java programm. i work with the german book "SAP Business Connector 4.8 - Administration und Entwicklung".
    Now i hand on the routing rule.
    [Screenshot|http://h-2.abload.de/img/routingruleuyt9.png]
    i don't know what i should configure here for receiving data, which i need for an java programm.
    i will be very happy, when somebody got a tip or an source (tutorial) where i can find such a configuration  :wink:

    I think u r writing BDC for Uploading the data from excel flile to sap. for this is the code I am sending u can use then for Uploading data from excel to sap.
    DATA: lv_filename TYPE rlgrap-filename.
    FIELD-SYMBOLS : <fs>.
    DATA : l_intern TYPE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA : l_index TYPE i.
    PARAMETERS : startcol TYPE i ,
          startrow TYPE i ,
          endcol TYPE i ,
          endrow TYPE i .
    PARAMETERS: p_flnam LIKE rlgrap-filename.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_flnam.
      CALL FUNCTION 'F4_FILENAME'
    EXPORTING
       program_name        = sy-repid
      FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_flnam .
      MOVE p_flnam TO lv_filename.
    Uploading the flat file from the desktop
    START-OF-SELECTION.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                      = lv_filename
          i_begin_col                   = startcol
          i_begin_row                   = startrow
          i_end_col                     = endcol
          i_end_row                     = endrow
        TABLES
          intern                        = l_intern
    EXCEPTIONS
      INCONSISTENT_PARAMETERS       = 1
      UPLOAD_OLE                    = 2
      OTHERS                        = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SORT l_intern BY row col.
      LOOP AT l_intern.
        MOVE l_intern-col TO l_index.
        ASSIGN COMPONENT l_index OF STRUCTURE itab TO <fs>.
        MOVE l_intern-value TO <fs>.
        AT END OF row.
          APPEND itab.
          CLEAR itab.
        ENDAT.
      ENDLOOP.
    I hope it will help u.
    Regards
    Nayan

  • Java Programmer/Analyst - Houston, TX

    Hi! My name is Dharti; I need your help finding people qualified for the position listed below, be it you or someone you know! I work for ROI Staffing, an established IT Professional Service Firm headquartered in Houston, TX, dedicated to finding superior Information Technology Talent. We provide sourcing solutions to our nationally established Private and Public sector Fortune 500 clients. Our services are flexible by design and span a wide spectrum of industries and technologies.
    JOB DESCRIPTION
    JOB TITLE: Java Programmer/Analyst
    WORK LOCATION: Houston, TX
    INTERVIEWS: ASAP
    START DATE: ASAP
    DURATION : 6 months contract to hire
    MUST BE U.S.CITIZEN/GC HOLDER/ EAD HOLDER
    PAY RATE: W-2 Hourly Rate with benefits during contract & then transition to permanent employee with salary d.o.e + full comprehensive corporate benefits to include medical, dental, 401K, bonus & more!)
    Our Client is seeking a resource with strong technical skills to participate in numerous development projects involving our Client Application Team applications. These applications provide a number of critical business functions including integration of external exchanges, position, price management, and straight thru processing. Client has identified a number of projects that will expand the scope of the applications and propagate them through more areas of the business. The team is in need of a programmer to design, develop, and implement the proposed solutions in the trading organization.
    The tasks and activities expected of the position are as follows:
    * Development, support and maintenance for custom developed trading applications.
    * Analyze and devise solutions for production related issues.
    * Develop technical design and architecture specifications based on application requirements.
    * Perform unit testing and assist with integration testing of applications.
    Skill/Role Level Years Preference
    Enterprise Systems Development Intermediate 5.0 Required
    Oracle Intermediate 3.0 Required
    TIBCO Intermediate 2.0 Preferred
    Programmer Intermediate 5.0 Required
    IBM WebSphere Intermediate 2.0 Required
    J2EE (Java 2 Enterprise Edition) Intermediate 3.0 Required
    Java Swing Required
    If you are not the correct person to talk with in regards to this position, please feel free to forward this job requirement to any friends or colleagues you know that might be interested in this opportunity, whether they are currently looking or know someone that is.
    Thanks for your assistance in advance and taking the time to read over my e-mail. I hope to hear back from you soon.
    Dharti Singh
    ROI Staffing, LP
    713.600.3201 direct
    Toll Free Number: 888.884.6200
    [email protected]

    -

  • How to run a jms-class as a stand-alone java-Programm???

    Hi,
    I have another little question concerning jms. The jms programs I have written so far had to be executed
    as application clients using the appclient-tool. I asked myself, if it is possible to run a class
    that uses jms like a normal java-Programm with the java-command.
    Unfortunately, an exception is thrown then, because there is no initial context for the JNDI
    lookup. Is there a work around to this problem??
    THANKS.

    can you write more concretely where I can find the solution to this problem??

  • Can we run java programms on Windows XP?

    Hi experts..
    I installed JDK on Microsoft Windows XP Home Edition..but i am unable to run java programmes.
    can i run java programmes on Windows XP?? if so how??
    i will be very thankful..if any one solve this problem..

    Yes, you can. There's a bunch of things you need to do (mostly setting the path environment variable). You should look at the documentation that came with the JDK, and check out the many forum responses to problems in setting up the JDK on Win 2K and Win XP.
    HTH

  • How to open another application from a java programme

    How can I open some other application like "Textpad"
    from a java programme.
    Actually I want to open a particular java file in Textpad editor from my java programme.
    How Can I do that?
    Thanks

    Thanks for the code,
    I tried that but got this error
    java.io.IOException: CreateProcess: C://ProgramFiles/TextPad4/TextPad.exe D://Pi
    yush/BeanCreator/Parts.java error=3
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:64)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:272)
    at java.lang.Runtime.exec(Runtime.java:195)
    at java.lang.Runtime.exec(Runtime.java:152)
    at pack.CreateBean.CreateFile(CreateBean.java:327)
    Any idea!! What that means

  • VB Programmer needs java help

    I am a VB programmer and have started to learn Java a little bit. I need this program to be written anytime by Monday, but it must be written in java because they plan to use it on multiple platforms. Our java programmer quit and I don't know enough to write it in java. The program is to figure payroll. The user will input their name and remove the check in the hourly check box if they are salaried. If the employee is hourly, then any hours worked over 40 are time and a half. If they are salaried, they must choose what company level they are. I have included the three salary levels below. The program then needs to print to the screen in the bottom text box their yearly salary computed for a 40 hour work week. Can anyone help me and write the program? Whoever will do this for me, I will award 34 duke dollars. That is all I have.
    Thank you so much for your help,
    Kori
    Name:
    Text box here for name
    (check box) Hourly
    Hours:
    Text box here for hours
    (option button) Level 1
    (option button) Level 2
    (option button) Level 3
    (option button) Level A
    (option button) Level B
    Total Pay:
    Number Processed:
    (command button) (command button)
    Calculate Pay__________Clear
    (text box)
    shows "payoll report"
    Level 1 = 6.25f
    Level 2 = 8.15f
    Level 3 = 10.85f
    Level A = 27000f
    Level B = 42000f
    Max hours is 80.0f

    I am a VB programmer and have started to learn Java a
    little bit. I need this program to be written anytime
    by Monday, but it must be written in java because they
    plan to use it on multiple platforms.Do this this little toy program in VB so you have a working solution on one platform by Monday. Show it to your boss and say you did a rapid prototype first for people to evaluate. Then take your time and convert it to Java.
    /Ulrika the pragmatical.

Maybe you are looking for

  • When there are multiple users can the email files that are on the left of the screen be hidden from other users?

    There are several people who might want to use Thunderbird on a work computer but I don't like how everyone's email files are open to public view. It looks like anyone can see emails without having to login to another person's account.

  • Compile of forms on Oracle 11g database Rel1 very slow

    I think the following statement is causing the issue : SELECT COUNT (*) FROM ALL_OBJECTS WHERE ( OWNER = 'SYS' AND OBJECT_NAME = 'DBMS_JAVA' AND OBJECT_TYPE = 'PACKAGE' AND ALL_OBJECTS.STATUS = 'VALID' ) OR ( OWNER = 'SYSTEM' AND OBJECT_NAME = 'ORA_D

  • How does one escape special characters while compile the package.

    Hi The below is my function, while compiling the function in SQL plus it's asking the substitute values, still I want to & symbol this column 'S&P Long Term Rating' now my question is how to avoid while compiling substitute values FUNCTION get_attrib

  • DKU-2 USB Cable

    Hi all, I have a DKU-2 USB cable I used with my lost S60 Nokia 6620 (6600 european equivalent). Is it compatible with my new S40 Nokia 6133 (6131 equivalent I think)? I am not willing to pay for the new recommended cable if it is just OK to use the o

  • Network Dropping

    Since I upgraded to Mavericks, my network connection would drop after waking from sleep and after startup. I would have to turn wifi off then on. I have log files to. I changed my email address to [email protected] in the logs Jan  7 17:54:59 Macbook W