Question from Sun ePractice exam for SCJP

Hi All. I�m preparing to take the SCJP for Java 5 test shortly, and in preparation I am taking one of the Sun ePractice exams for this test. I have run across an answer I don�t understand and am hoping that someone might help me better understand their explanation. I have included the question and answer below.
Here's where I'm fuzzy: I selected option A, compilation fails, as the answer. As you can see by their answer, option A is, in fact, the correct answer. However, I thought the compilation error would be due to the statement on line 10. The statement on line 10 is attempting to assign a superclass object of type Dog, referenced by d2, to a reference variable for a subclass of Dog, h1 of type Harrier, without an explicit cast. But their answer states that the compilation will fail due to an error on line 8, not line 10. I don�t understand this. With respect to line 8, I can see that a cast from a subclass to it�s superclass would make the code more clear, but I don�t see why the compilation would fail due to no cast on this line. Furthermore, the compilation will certainly fail from the statement on line 10. I ran the code, and it did fail due to line 10. Do you think this is just a mistake in their answer, or am I missing something?
Any insight would be much appreciated.
The question and answer from the practice exam are as follows:
Given:
1. class Dog { }
2. class Harrier extends Dog { }
3.
4. class DogTest {
5. public static void main(String [] args) {
6. Dog d1 = new Dog();
7. Harrier h1 = new Harrier();
8. Dog d2 = h1;
9. Harrier h2 = (Harrier) d2;
10. Harrier h3 = d2;
11. }
12. }
Which is true?
A-     Compilation fails
B-     Two Dog objects are created
C-     Two Harrier objects are created.
D-     Three Harrier objects are created
E-     An exception is thrown at runtime
Answer:
Option A is correct. The compiler will issue an incompatible types error because of the assignment on line 8.

Did you buy these practice exams off sun. I remember this question. It confused the hell out of me too. Yes you are correct it fails because of line 10.

Similar Messages

  • Test question from firefox nightly mac for finitarry

    text of test question from firefox nightly mac for finitarry

    the link is actually
    http://wiki.apache.org/spamassassin/SpamAssassinon_Mac_OS_XServer
    what you have posted takes one to a "page does not exist yet" error page

  • Question from mock exam for SCJP 5

    Hi everyone,
    I have encountered this question:
    class Game{ }
    class Cricket extends Game{ }
    class Instrument{ }
    class Guitar extends Instrument{ }
    interface Player<E>{ void play(E e); }
    interface GamePlayer<E extends Game> extends Player<E>{ }
    interface MusicPlayer<E extends Instrument> extends Player{ }Identify valid declarations.
    And one of the possible answers is (which is not correct):
    class MidiPlayer implements MysicPlayer {
       public void play(Guitar) {}
    }And the explanation given why it is a wrong answer is:
    "Observe that this is a non-typed usage of MusicPlayer. Since MusicPlayer has not been typed to
    anything, that means, it should be able to work with any object. Thus, MidiPlayer must have a
    method play(Object )."
    But this explanation in my opinion is wrong as play(Object) would not satisfy MusicPlayer
    interface. It would have to be play(Instrument) ... Am I right here ?
    Cheers,
    Adrian

    But this explanation in my opinion is wrong as play(Object) would not satisfy MusicPlayer
    interface. It would have to be play(Instrument) ... Am I right here ?
    Cheers,
    AdrianYes, and no.
    play(Object) WOULD satisfy the MusicPlayer interface, because Object is the super class of Instrument. The requirement for a class to implement an interface is that its parameter types be able to accept the types specified in the interface, and its return type be a type or subtype of the return type from the interface.
    So technially, it should be instrument, BUT
    It is perfectly valid to accept any super type of Instrument, which includes java.lang.Object. The point is that if I do this:
    MusicPlayer musicPlayer = new MidiPlayer();
    musicPlayer.play(new Guitar());This MUST be legal. Since MidiPlayer has a play operation that is void and accepts an Object (which a Guitar happens to be a subtype of), this is legal. The restriction is that the play method cannot take type Guitar, because not all Instruments are Guitars, and the play method cannot take String, for example, because an Instrument is not a String. But it can define a parameter of type Object, because all Instruments are Objects.
    I'm not sure if that made much sense, but that's the answer you're looking for. Here's the relevent section from the JLS:
    http://java.sun.com/docs/books/jls/third_edition/html/classes.html#38649
    http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.4.8.3
    http://java.sun.com/docs/books/jls/third_edition/html/classes.html#8.4.8.4
    - Adam

  • Solaris Installation question (from sun course)

    Hello, I am just learning about solaris from the course WS-2001-S10. I hope this kind of question is fit for this forum...otherwise please direct me to where I can ask about it.
    There is a review question at the end of the installation module like this:
    Which Solaris 10 OS installation methods are available to perform a standard upgrade?
         Solaris suninstall and Custom Jumpstart
         [x]Solaris suninstall, Solaris Web Start, and Custom Jumpstart
         Solaris Web Start and Custom Jumpstart
    Feedback:
         Correct.
    The correct answer is 2 but i don't really get it why. In the course they say nothing about Web Start and from what i have read Web Start is just a Web-Based Jump Start installation.
    In the course SUN says that "The methods available for a standard upgrade are Solaris GUI installation, the CLI installation, and the custom JumpStart procedure. "
    So "suninstall, Solaris Web Start, and Custom Jumpstart" from the answer equals "Solaris GUI installation, the CLI installation, and the custom JumpStart procedure" from course...
    Also from what I understood the jumpstart installation is also CLI ...(totally confused now)
    Can someone shed some light on this please?
    Edited by: realthor on Feb 1, 2010 2:18 PM

    Installation Guide
    [http://docs.sun.com/app/docs/doc/806-5205]
    suninstall = CLI
    Web Start = GUI (or CLI)
    Custom JumpStart = CLI

  • Sun Wireless Toolkit for CDC - JSR75 Application

    Hi All,
    I have Sun Wireless Toolkit for CDC installed in my machine. I have written a sample JSR75 application to access PIM database. At Compile time, it's giving so many compilation errors; it's not recognizing the PIM API.
    I have placed the jsr75.jar file in lib folder of CDC installation directory. At this time it's giving NullPointerException.
    Any body tell me how to access PIM API from Sun wireless Toolkit for CDC.
    Thank you very much in advance
    Thiru

    What platform do you use to develop? I use NetBeans and compilation works fine.
    I have the jsr75.jar in the following places (on old Apple iBook):
    /Users/carl/.netbeans/5.0/emulators/wtk22_linux/emulator/wtk22/lib/jsr75.jar
    /Users/carl/Library/mpp-sdk/jsr75.jar (for mpowerplayer emulator, but this does not work (yet))
    In the netbeans lib files also these jar-iles exist:
    cldcapi10.jar jsr082.jar midpapi10.jar wma11.jar
    cldcapi11.jar jsr184.jar midpapi20.jar wma20.jar
    j2me-ws.jar jsr75.jar mmapi.jar
    Carl.

  • Recommendations for SCJP 6 practice exams

    I everyone, I am new to this forum but I have gotten a lot of help from this forum so far. This is my first post. And please excuse me and direct me in the right direction if someone else has already asked and gotten an answer for this questions.
    I am taking the SCJP 6 this AUG 4. I wanted to know what practice exam service shall I use (other than the two exams provided by SUN) if I want to get a taste of the real exam. I know there are many sites that provide practice exam packages, but I am afraid they might not be similar to how the actual SCJP 6 exam might look like. Please tell me your recommendations on what sites best depict the real exam scenarios.

    Thank you for your reply, I will check out your recommendations, it certainly helps. But I would also like a recommendation for a practice exam service that I could subscribe to, meaning a portal that will provide me with many practice questions and I dont have to worry about whether they are similar to the questions in the real exam. I know there are services like Ucertify, pass4sure etc...if anyone has used these services could you please comment! Thank you all in advance

  • HT201272 I have recently picked up an Apple TV. When I go to the movies tab, there are less movies available there than there are in my i-Tunes account. I've done some looking around at questions from others, but haven't found an answer that works for me.

    I have recently picked up an Apple TV. When I go to the movies tab, there less movies available there than what is available in my i-Tunes library. I have 38 movies showing in my library but only 23 are showing in the Movies tab on the Apple TV. After researching this a little, there are only 23 movies showing under Purchased in the Quicklinks of my i-Tunes account. The majority of my collection are digital copy downloads that came from DVD purchases. Some of the missing movies were added in the past couple of months, the rest are a year-or-so old. I have done some looking around at questions from others, but I have not found an answer that will fix my situation. How do I update my library to get ALL of my movies to reflect that they were "Purchased"(as it says they were in their Properties)?

    Biggles Lamb wrote:
    Chill out guys, getting personal will never ever change another persons view, right or wrong, they are entitled to them .
    The pros and cons of to CC or not to CC have been done to death
    Its a fact the CC model will work for some, especially newbies and small businesses.
    The risks associated with the CC model have been well documented.
    For long term users of CS perpetuals its generally a large hike up in cost compared to the upgrade system.
    Then there are the....... Adobe can rot it hell...... group who will never subscribe
    To each their own, you do the math to suit your cashflow whatever that is and then make an informed decision
    To those on the CC model, I'd like to offer some practical advice.........do not allow automatic updates.........make regular backups............develop an exit strategy of alternatives for when you can no longer afford the subscription costs............never ever assume that the Adobe update is bug free
    Enjoy your cloud
    Col
    Thank you for that post, and the advice. I just happen to be one of those who it does work for. I've been around long enough to know that CC isn't going to work for everyone(the large publishing/radio/web company I work for isn't upgrading to CC because of the costs involved). But it does for me as I potentially venture out into the full-time freelancing world and away from the more structured big office environment. I can't make decisions based on what is best for anyone else, or what will hurt or help Adobe. Just what affects me, and that's all.
    Brent

  • Training  and courses from  sun for free?

    Do You some online courses/training from SUN for free? (develop. and administration)
    or can You tell me witch books are the best to learn java?

    Skowroniasty wrote:
    Do You some online courses/training from SUN for free? (develop. and administration)Nope.
    or can You tell me witch books are the best to learn java?This is The List™:
    [Sun's basic Java tutorial|http://java.sun.com/docs/books/tutorial/]
    [Sun's New To Java Center|http://java.sun.com/learning/new2java/index.html]
    Includes an overview of what Java is, instructions for setting up Java, an intro to programming (that includes links to the above tutorial or to parts of it), quizzes, a list of resources, and info on certification and courses.
    jGuru
    A general Java resource site. Includes FAQs, forums, courses, more.
    JavaRanch
    To quote the tagline on their homepage: "a friendly place for Java greenhorns." FAQs, forums (moderated, I believe), sample code, all kinds of goodies for newbies. From what I've heard, they live up to the "friendly" claim.
    [Yawmarks List|http://forums.devshed.com/java-help-9/resources-for-learning-java-249225.html]
    [The Java Developers Almanac|http://www.amazon.com/exec/obidos/tg/detail/-/0201752808?v=glance]
    [http://javaalmanac.com|http://javaalmanac.com]
    Bruce Eckel's [Thinking in Java(Available online.)|http://mindview.net/Books/DownloadSites]
    Joshua Bloch's [Effective Java|http://www.amazon.com/Effective-Java-2nd-Joshua-Bloch/dp/0321356683]
    Bert Bates and Kathy Sierra's [Head First Java|http://www.amazon.com/exec/obidos/tg/detail/-/0596004656?v=glance]
    James Gosling's [The Java Programming Language|http://www.bookpool.com/sm/0321349806]
    Gosling is the creator of Java. It doesn't get much more authoritative than this.
    Joshua Bloch and Neal Gafter [Java Puzzlers.|http://www.javapuzzlers.com/]

  • Help on Sun Certified Developer for Java Web Services (CX-310-220) exam

    Hi,
    I am planing for Sun Certified Developer for Java Web Services (CX-310-220) certification. Can anyone provide me the links for resouces? can anyone provide me books/publications/author best preparation material to score good marks in exam? can anyone provide me the download resources available over internet?
    thanks in advance..!!!
    regards
    gaveesha

    yes, that's the only decent book covering most of the exam curiculum (but NOT all of it, check the exam specs versus the book content to know what you are missing).
    I'm working on the same material, and boy is it a lot...
    Dry, boring stuff most of it.

  • Cost of sun voucher in india for SCJP?

    I need sun voucher for SCJP.
    How much it cost in india ?

    The fee is $300. For study materials see the threads in this forum. It has been asked many times.
    http://www.sun.com/training/certification/

  • I am going to sun certification exam 1.5 se

    how to prepare and which notes more use ours
    i need syllabus

    Here are some more links for your ref..
    Java Technology Certification -
    http://suned.sun.com/US/certification/java/
    Starting point for Sun's Java technology certification.
      jCert - http://www.jcert.org/
    Learn about initiative to recognize Java certifications across industry vendors.
      SCJP 1.4 certification primer -
    http://www-106.ibm.com/developerworks/java/library/j-scjp/
    Outlines the new programmer certification exam with suggestions for preparation, sample questions and links to resources.
      Whizlabs - http://www.whizlabs.com/jwhiz.html
    Test simulators for Sun Java Certification Exams: SCJP, SCWCD and SCEA [Commercial]
      JavaPrepare - http://www.javaprepare.com/ Tutorials, mock exams and other preparation material for SCJP and SCWCD.
      Marcus Green's Java Certification - http://www.jchq.net/ SCJP exam resource with tutorials, mock exam and community features.
      Absolute Java - http://www.absolutejava.com/ Collection of tidbits to prepare for SCJP exam.
      Java Certification Webring -
    http://i.webring.com/hub?ring=javacert
    Web-ring of sites involved with certification.
      Bill's Java Certification Resources -
    http://www.lanw.com/java/javacert/default.htm
    SCJP mock-tests and links to other resources.
      Levteck.com - http://www.levteck.com/ Includes list of certification books, study aides, links for mock exams and salary surveys.
      Java Guru: Java Certification Forum Home Page - http://www.jguru.com/forums/JavaCertification
    Forum to pose and view the who, what, where, why and how questions on Java certification.
      Wah! Java - http://www.geocities.com/wahjava/ Contains topic-wise mock tests, tips from those who passed, recommended books and links to other testing/java resources.
      Certified Java Programmer Mock Exam (310-025, 310-035) - http://www.danchisholm.net/ Contains mock exams and tutorials for SCJP exam.
      Certification: The Java Mock Test -
    http://www.aniyog.com/java/certification.htm
    Offers free applet based mock exam for SCJP2.
      VoodooExam - http://www.geocities.com/gnashes30/java/mock.htm
    SCJP mock exam engine with facility to add new question/answers.
    Needs jdk1.2.1 or higher [download].
      Free Java Certification Training -
    http://www.michael-thomas.com/
    Contains mock tests, source code, resources for Sun Certifications, resources on Web-development and UML.
      SCWCD Exam Review -
    http://courses.coreservlets.com/Course-Materials/15-Web-Component-Certification.pdf
    Review notes for the Sun Certified Web Component Developer exam.
    [PDF]
      Jiris - http://www.jiris.com
    Contains mock exams, links, forum, code examples and other SCJP/SCWCD resources.
      JavaCaps Home Page - http://www.javacaps.com/ SCJP, SCWCD resources including tutorials, FAQs, Mock Exam and links.
      JavaCoding.net - Certification -
    http://www.javacoding.net/certification/
    Certification information and mock exams.
      Sun Certified Java Programmer sample test paper! - http://www.geocities.com/skmajji/Main.html
    A practice test for SCJP comprising of 30 questions with answers.
      Anilbachi Java Certification Resources - http://www.anilbachi.8m.com/ SCJP tutorial, mock exams, objectives, mock exam links and discussion forum.
      Mock Exam - http://www.valoxo.ch/jr/mocks/mock01a.html
    Javascript based SCJP Mock Exam.
      withmilk.com - SCWCD mock exam -
    http://www.withmilk.com/scwcd.jsp
    Offers mock Sun Certified Web Component Developer exam.
      Sun Certified Programmer Examination Revision Book - http://indigo.ie/~dywalsh/certification/
    SCJP Tutorial based on Sun's Objectives.
      Enthuware - http://www.enthuware.com/ Test simulators for Sun certification exams. [Commercial]
      The Java Skinny - http://www.acmerocket.com/skinny/ Contains sample questions, SCJP exam objectives with code examples and other resources.
      Java Quick Reference - http://www.janeg.ca/index.html Comprises of concise study notes for SCJP exam and other links.
      About.com - Java Certifications -
    http://certification.about.com/cs/freequestions/index.htm
    Explore information and links for Java and Sun certifications.
    Includes articles, practice tests, software reviews, book reviews, and forums.
      Java Certification Study Group -
    http://groups.yahoo.com/group/javacertstudy/
    Study community with forums, chat and resources.
      Universal teacher -
    http://www.geocities.com/rameshchhabra2002/Java/certification.htm
    SCJP exam simulator containing 600 questions [Download].
      Java Certification Study Notes -
    http://www.geocities.com/velmurugan_p/
    SCJP & SCWCD study notes, resources and tips.
      Tipsmart.com - http://www.tipsmart.com/ Contains interactive quizzes, pitfalls, FAQs by programmers, list of integrated development tools.
      JavaQuestion Bank - http://javaquestion.tripod.com/ Includes general and certification questions and other java resources.
      SCJP Preparatory Questions -
    http://sanjayahuja.tripod.com/tech/scjp/scjp.html
    SCJP questions, summary, exam details and resources collected from various sites.
      withmilk.com - SCJP2 mock exam -
    http://www.withmilk.com/scjp.jsp
    Offers mock SCJP exam.
      Learn + play Java - http://www.jai.ch/ Interactive, downloadable course for SCJP with built-in Java source interpreter. Work and experiment with class libraries using the tests and JLS Summary.
      Java Certification Exam Questions -
    http://home-1.tiscali.nl/~bmc88/java/javacert/
    SCJP mock tests, exam notes and other resources.
      SCJP2 MockExam -
    http://www.geocities.com/rraje_2000/MockExam.html
    60 questions mock test [Download].
      Dallas SCJD Study Group -
    http://www.geocities.com/developergrp/
    Developer exam resources including FAQs, guidelines, presentations, free books and discussion forum.
      JSecure - http://www.netcraftonline.com/ Java Certification exam simulator. [Commercial]
      Online Java - http://www.geocities.com/korayguclu/
    Contains excerpts from an ongoing SCJP book, exam information, notes and links to Mock exams/resources.
      Radhika's Java and HTMl Home -
    http://www.geocities.com/r_palwai/scjp.htm
    Contains links to SCJP resources.
      Prasks Resources -
    http://prasks.webahn.com/architect/scja.html
    Sun Certified Java Architect resources and experiences.
      Certification4Career - http://www.certification4career.com/
    Contains study guides, mock exams, discussion board and links for SCJP.
      Quick Java - http://home.worldonline.dk/qjava/ Contains a Java lookup reference and test-simulator based on a book.
      go4java- Java Certification Site -
    http://www.mycgiserver.com/~go4java/
    Includes SCJP experiences, FAQs, mock exams, tutorials and links to other resources.
      Java.CertifiedProgrammer.com -
    http://java.certifiedprogrammer.com/
    Contains study aides, news and mock exams.
      Abhilash's java quiz site -
    http://www.angelfire.com/or/abhilash/
    Comprises of set of nine practice quizzes for SCJP exam with answers.
      Oracle Certified Java Developer -
    http://otn.oracle.com/training/certification/jdeveloper_ocpds.html
    Starting point for Oracle Certified Java Developer OCP program.
      Java Programmer Certification -
    http://www.geocities.com/technofundo/tech/scjp/scjp.html
    SCJP Revision notes, links and other resources.
      j-think - http://jamal.pisem.net/scjpnotes.htm
    Contains SCJP notes.
      Java Certification (SCJP) -
    http://www.akgupta.com/Java/certification.htm
    Contains SCJP mock exam, tidbits, exam notes and links to other resources.
      Sun Java Certification Notes -
    http://216.239.33.100/search?q=cache:http://www.miindia.com/tech/javacert.htm
    Contains concise preparation notes.
      Cramsession -
    http://studyguides.cramsession.com/cramsession/Java/
    Study guides for Java Certification exams; needs (free) registration.
      JCertify - http://www.enterprisedeveloper.com/jcertify/
    Java Certification exam simulator with tutorials and integrated training content. [Commercial] If you had gone thru all these sites, you would be the Master in java! :-)
    Good Luck!

  • Online resource for SCJP

    Hi All
    Is there any online resource from where I get the material for SCJP or
    kind of online exam I can go thru for practice
    plz let me know
    Thanks
    Niraj

    Hi,
    You may also wish to take a look at : http://www.javacertificate.com/
    I found this site very useful when I was studying for the SCJP exam. It has practice questions which are also split into subjects allowing you to study a single area at a time. It also contains mock exams.
    Hope this helps.
    Ben.

  • Syllabus/Topics for Sun Certified Instructor for Java Programming Language

    Hi,
    What is the Syllabus/Topics for Sun Certified Instructor for Java Programming Language ?
    At the following link
    http://www.sun.com/training/catalog/instructor/java.html
    detailed syllabus is not there.
    I am unable to find the details in Sun site even after search through google.
    Please help in this regard.
    Thank you for your kind consideration.

    Sir,
    thank you for your response.
    technic  wrote:
    I'm not sure what you mean by Syllabus/Topics?For SCJA/SCJP/SCWCD/SCBCD/SCDJWS/SCMAD/SCEA
    I am able to find the detailed syllabus for the exam by clicking on the respective certification link at the following link
    http://www.sun.com/training/certification/java/index.xml
    for example: for SCJP,
    http://www.sun.com/training/certification/java/scjp.xml
    http://www.sun.com/training/catalog/courses/CX-310-065.xml
    these links are providing exam objectives, number of questions, exam duration , fee details etc.
    But for
    Sun Certified Instructor for Java Programming Language Course (SL-275)
    I am unable to find such details exam objectives (syllabus), no. of questions, exam duration, etc.,
    even, the following link
    http://www.sun.com/training/certification/objectives/index.xml
    is providing details of all other certifications except
    Sun Certified Instructor for Java Programming Language Course (SL-275)
    thank you for your kind consideration.

  • Preparing for SCJP?

    Hi
    My name is Jon T and I am a programmer with a local company. I support and develop client�s applications. I use the following in daily process
    Unix (HP-UX)
    Oracle (Toad)
    VB
    ASP
    etc ..
    I have a basic foundation in Java and I am learning and preparing for Java Certificates.
    Has anybody passed the test successfully who started from the beginning level?
    Say, if I started today, is it possible to pass the test by May/June?

    I agree if you are programmer and study an hour or 2(include reading and doing programming practice).
    You need to read the book for SCJP. It is better if you can use the quiz and got a score close
    to 90%.People recommend the test from whizlab and you have to pay fee.
    The questions in the quiz is close to the exam in SCJP and it may help you familiar with the concept.
    The book written by Kathy Sierra is good.
    There are some free quizs on the internet. I myself have not bought the quiz from whizlab. I succeeded in SCJP 1.4 after one retry.

  • Migrate Oracle Apps 11.5.10.2 from Sun solaris to RHE Linux 32 bit.

    We are migrating the Oracle Apps 11.5.10.2 from Solaris two node to Linux two node including the database Oracle 10.2.04 64 bit.
    Since the applications only support 32 bit we are not able to store CM tier in a 64 bit Linux so with this considerations we are going with the below plan.
    1. Install RHEL 5 as a 32 bit for two nodes ( One for DB/CM and FORMS/WEB)
    2. Migrate the applications and DB from Solaris to Linux as the same node configuration that is
    Node A:
    Oracle DB 10.2.0.4 64 bit ( SUN oS 10 64bit) -> Oracle 10.2.0.5 32bit (RHEL 5 32 bit)
    Oracle Apps CM 11.5.10.2 (SUN OS 10 64bit) -> Oracle apps CM 32 bit(RHEL 5 32 bit)
    Node B:
    Oracle apps 11.5.10.2 forms (sun OS 10) -> Oracle apps 11.5.10.2 forms ( RHEL 5 32bit)
    Oracle apps WEB 11.5.10.2 (SUN OS 10) -> Oracle apps WEB 11.5.10.2 ( RHEL 5 32 bit).
    Question : 1. Did you see any snag on this kind of migration
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux

    Hi,
    1. Did you see any snag on this kind of migrationWhy would you downgrade the db from 64 bit to 32 bit. As 32 Bit has lot of memory limitations.
    You could keep the database on 64 bit for linux too.
    2. Any documentation to migrate the Oracle APPS 11i 10.2.0.4-64 bit database from Sun Solaris to oracle apps 11i 10.2.0.5-32 bit on Linux Please see
    Note 238276.1 - Migrating to Linux with Oracle Applications Release 11i
    Using Oracle Applications with a Split Configuration Database Tier on Oracle 10g Release 2 [ID 369693.1]
    10g Export/Import Process for Oracle Applications Release 11i [ID 331221.1]
    10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    Notice to Oracle E-Business Suite Customers: Correction to Export/Import Notes [ID 1055539.1]
    EBS 11i Export/Import Fails On Admsc1020.sql Due To Missing Catmgdidcode.sql [ID 804665.1]
    Thanks
    Edited by: EBSDBA on Oct 25, 2011 5:30 PM

Maybe you are looking for

  • Missing primary foreign key in grandchild table

    I have a model with a two inheritance generations. https://www.dropbox.com/s/4rghqcmxx24bgvt/pf_logical.png When I engineer all entities everything is fine. The child tables get their primary foreign keys: https://www.dropbox.com/s/t4v5bexxwdrn5y1/pf

  • Changes to repository not permitted

    Hi I installed SAP ides 4.7 recently. I created a new user becuse DDIC doesnot allow us to do any changes or customizations. Then i tried to create a new program or change with ABAP editor it is giving me an error says that" Changes to repository or

  • Connected problem

    Hi all, I have a problem to connect my iPhone 5S to computer. When I pluged in with cable notification appear that "this cable or accessory is not certified and may not be reliable work with this iPhone". What the issue causing this, and what should

  • Internet is hot and cold on macbook

    I've been having a lot of trouble with my internet on my Macbook Pro just for the past week. Basically it just gets really slow, or just stops responding to the internet. I know that the network is totally connected (it says so on the Airport ting) a

  • Email Newsletter in Dreamwearver

    Hello There, I want to create an email newsletter in Dreamweaver CS3 using tables, CSS, etc. Having trouble. Any sage advice? Thank you! d