Import - Nothing Found 9.0.2

Hi-
We've just run an import but when we try to locate the pages, nothing is found.
Any ideas why? Is there some additional steps one should perform besides an import of a dmp file and an import of a transport set?

Are there any
tricks/tips you can offer those of us using a
non-patched default install from the CDs Oracle has
been shipping. Thanks!A good place to start is to read the Oracle 9iAS Portal Export/Import FAQ located at:
http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/DEPLOY_PERFORM/EXPORT_IMPORT_FAQ_1120.HTM
Plenty of tips and help there that may be of relevance. For best results, it is also advisable to load the latest patchsets available for Portal 9.0.2 export/import described in the above FAQ.
Best Regards,
Harry

Similar Messages

  • Display Tag for JDeveloper 10g. "Nothing found to Display"

    Hello everyone. I am currently using JDeveloper 10g. I already add the display tag in the library but when I try to use it always shows nothing to display.
    Can someone help me?
    this is my code
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@page import="java.sql.*"%>
    <%@page import="java.util.*"%>
    <%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    String method = request.getParameter("method");
    if (method == null) {
    List testData = new ArrayList();
    Map map1 = new TreeMap();
    map1.put("id","1");
    map1.put("firstName","Bill");
    map1.put("lastName","Gates");
    testData.add(map1);
    Map map2 = new TreeMap();
    map2.put("id","2");
    map2.put("firstName","Scott");
    map2.put("lastName","McNealy");
    testData.add(map2);
    Map map3 = new TreeMap();
    map3.put("id","3");
    map3.put("firstName","Bill");
    map3.put("lastName","Joy");
    testData.add(map3);
    session.setAttribute( "test", testData);
    } else {
    // grab the testDate from the session
    List testData = (List) session.getAttribute("test");
    String useMe = request.getParameter("id");
    if (useMe != null && method.equals("Delete")) {
    // figure out which object it is and delete it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    testData.remove(m);
    %><div class="message">Delete succeeded!</div><%
    break;
    } else if (method.equals("Save")) {
    // figure out which object it is and update it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    m.put("firstName", request.getParameter("firstName"));
    m.put("lastName", request.getParameter("lastName"));
    testData.set(i, m);
    %><div class="message"><h2>
    <b><c:out value=" "/></b> updated successfully!
    </h2></div><%
    break;
    } else if (method.equals("Add")) {
    Map map4 = new TreeMap();
    // generate a random number
    Random generator = new Random();
    String id = String.valueOf(generator.nextInt());
    pageContext.setAttribute("id", id);
    map4.put("id", id);
    map4.put("firstName", "");
    map4.put("lastName", "");
    testData.add(map4);
    %><c:redirect url="request.jsp">
    <c:param name="id" value=""/>
    <c:param name="method" value="Edit"/>
    </c:redirect>
    <%
    session.setAttribute( "test", testData);
    %>
    <c:set var="checkAll">
    <input type="checkbox" name="allbox" onclick="checkAll(this.form)" style="margin: 0 0 0 4px" />
    </c:set>
    <form name="editForm" action="request.jsp">
    <c:if test="false">
    <input type="button" onclick="location.href='request.jsp'" class="button"
    value="Reset List" />
    </c:if>
    <c:if test="false">
    <input type="submit" name="method" value="Save" class="button" />
    </c:if>
    <input type="submit" name="method" value="Edit" class="button"/>
    <input type="button" name="method" value="Add" class="button" onclick="location.href='?method=Add'" />
    <input type="submit" name="method" value="Delete" class="button" />
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>
    </form>
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    </body>
    </html>
    Edited by: 856423 on May 3, 2011 11:48 PM
    Edited by: 856423 on May 4, 2011 12:07 AM

    thanks for your reply.
    I am pretty sure that the list where I get the data contains values. I tried it by outputting the in ordinary table as shown here:
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    It outputs properly but when I tried this, it just output NOTHING FOUND TO DISPLAY.
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>

  • How do i import my library from an external hard drive. Exported it as had to wipe pc and reinstal windows but when i try to import nothing happens

    How do i import my library from an external hard drive. Had to export it as had to reinstal windows due to a conflict between windows and i-tunes. Wen i try to import nothing happens despite selecting the file. Can you import from an i-phone to i-tunes?

    What do you mean bye exported the library? 
    There is nothing to export or import.
    The correct process to backup the iTunes library would be to copy the ENTIRE iTunes folder from the computer to the external drive.

  • Javax.ejb,CreateException import not found

    I've upgraded from WL 8.1 to 10.3 and have an error "javax.ejb,CreateException import not found". javax.ejb used to be in weblogic.jar in 8.1 however, this path is empty in the version from 10.3. Where did it go? Do I need a new lib added to my build path?

    javax.ejb.* is in j2ee.jar
    if you use weblogic6.0, you need download ejb20.jar from http://www.weblogic.com
    if you use weblogic6.1 ,you need't this file.

  • Since Apple's last Update on 6 June 2014, I have been unable to Import photos from any source. I receive a message saying, Importing photos but nothing happens. When I click on Stop Import, nothing happens. I must press the On/Off button to exit iPhoto.

    Since Apples last update on 6 June 2014, I have been unable to Import photos from ANY source. When I attempt to do so, I receive the message "Import  Preparing to inmport..." I've waited 10 minutes but nothing happens. When I click on the icon, Stop Import, nothing happens. When I attempt to Close iPhoto i receive the message, "Photos are being imported to the photo library. Please wait for import to complete." When I click on OK, nothing happens. The only way I can exit iPhoto is to press the On/Off button.

    After loading this file I was sucessful in importing photos from a web site, my camera memory card and a CD containing photos.
    That is a good news.  We now know, that iPhoto is working as expected, when you are switching to a different library.
    But this is puzzling:
    I then see a box with two Librarys listed, both have the same name except for the following and are listed as:
    iPhoto Library.photolibrary but one has (default) after its name which is the one which is always displayed when I load iPhoto.
    Underneath the box is written:
    /Users/paulfkardian/Pictures/iPhoto Library.photolibrary
    Underneath this are three boxes titled: Other Library    Create New    Choose
    I highlighted the the File without the (default) after its name and clicked on Choose. A Library was loaded which had my photos (about 9,822) from about 7 months ago. Underneath the box is written diferently than the file always loaded and says:
    /Users/paulfkardian/Pictures (original)/iPhoto Library.photolibrary
    You are having two "Pictures" folders in your Home folder, Pictures and Pictures (original)? And each has a different iPhoto library - one working correctly, and one not?  Do you remember, when this second "Pictures" folder has been created and what caused it?  Did you restore your Home folder from a backup some time ago?

  • HT5467 Why am I getting a false location? I don't live in North Vancouver yet it says that's where I am. It should locate Burnaby. If I search for Burnaby "nothing found" comes up! Why?

    Why am I getting a false location? I don't live in North Vancouver yet it says that's where I am. It should locate Burnaby. If I search for Burnaby "nothing found" comes up! Why?

    As as been announced in the News worldwide, "Maps" is structurally defective and Apple itself is recommending that Users use a different 3rd party map app until they can sort it out.
    Hope this helps

  • I am trying to download photos off my IPhone as the "Cloud" tells me I have run out of storage space. I have connected my phone to IPhoto on my Mac but when I clik on Import nothing happens. What am I doing wrong?

    I am trying to download photos off my IPhone as the "Cloud" tells me I have run out of storage space. I have connected my phone to IPhoto on my Mac but when I clik on Import nothing happens. What am I doing wrong?

    Help for iCloud storage space >>   Managing your iCloud storage

  • Hello  J have problem in the demarage d iphoto the dialogue displays and asks me for the following text?  138 photos not having been imported were found in the iPhoto library(bookcase).  Would you care for import them? Yes or no you already have meet this

    onjour
    j ai des probleme au demarage d iphoto le dialogue s affiche et  me demande le  texte suivant ?
    138 photos n’ayant pas été importées ont été trouvées dans la bibliothèque iPhoto.
    Souhaitez-vous les importer ? oui  ou non avez vous deja rencontrer ce proble  si oui pouvez vous m aider
    Merci
    Hello
    J have problem in the demarage d iphoto the dialogue displays and asks me for the following text?
    138 photos not having been imported were found in the iPhoto library(bookcase).
    Would you care for import them? Yes or no you already have meet this prowheat if yes can you m help
    Thank you

    Open your iPhoto Library package with the Finder as shown in this screenshot
    and look in the folder named Auto Import.  Move any files in that folder to a folder on the Desktop and close the package. Do not make any other changes.  Launch iPhoto (the message should be gone) and drag the folder on the Dersktop into the open iPhoto window to import them.
    OT

  • Import not found when deploying to Standalone OC4J

    Hi,
    I'm developing a small application, consisting of a few classes and a few jsp pages. I'm using JDeveloper 9.0.3.1 with the sun j2sdk 1.4.2 for windows.
    I test my application with the embedded OC4J in Jdeveloper, and it runs fine. But when I deploy it to the standalone OC4J, I get this error:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errores de compilación:F:\programas\Oracle\jdeveloper\j2ee\home\application-deployments\Workspace4-WSWrappers-WS\WebServices\persistence\_pages\\_integrate2.java
    Note: sun.tools.javac.Main has been deprecated.
    F:\programas\Oracle\jdeveloper\j2ee\home\application-deployments\Workspace4-WSWrappers-WS\WebServices\persistence\_pages\_integrate2.java:6: Class webservices.Integrator not found in import.
    import webservices.Integrator;
    ^
    1 error, 1 warning
    This error does not happen when using the embedded OC4J server, only when deploying to the standalone. Since leaving JDeveloper up all times to use de app is not an option :) I really would appreciate any help towards solving this matter. I suspect it has to do with deployment options and whatnot, but I can't find anything wrong. Of course, I'm fairly new to this (jsp/OC4J), so it can be an obvious mistake right under my nose.
    thanks
    Javier

    Fixed. The problem was my Standalone OC4J was not properly installed, AND I was doin the deplyment wrong. Now it works by creating a war file, deploying to the war file and THEN deploying to the OC4J Standalone connection.
    So, if you start seeing "import not found" when deploying to standalone and it works on the embedded, check you war files to see if they REALLY are packing the classes they are supposed to carry.

  • I can't Disable my Memory Swapping on mac ( launchctl: Couldn't stat("/System/Library/LaunchDaemons/com.apple.dynamic_pager.plist"): No such file or directory nothing found to unload   )

    Hi Guys! I really need help here, Im a Web Graphic Designer and i really use alot of Memory on my mac ( i have 8gb ram ).  Everyone told me that disabling the memory swapping would really help alot and tried to disable it.  All of my friends taught me on how to disable it by enerting
    " sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist "  on my Terminal
    It really works on other MacBPro but i ge this error message
    " launchctl: Couldn't stat("/System/Library/LaunchDaemons/com.apple.dynamic_pager.plist"): No such file or directory nothing found to unload "
    I tried to look at the folder or directory there is no com.apple.dynamic_pager.plist and its confusing me cause the memory swapping is still working without the com.apple.dynamic_pager.plist.
    Can someone help or tell me how to fix this? I would really much appreciate it.

    I never heard of anyone doing what you are attempting!
    If you have so much memory as you claim I don't see the advantage of running the system in this non-standard way since you probably won't need to write to a swapfile anyway.  And you are asking for trouble if it does need it and it's not there.
    Finally, I submit you must have missed or or looked in the wrong place.  In terminal cut/paste the following:
    ls /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist
    It shouldn't report an error.

  • RAW+jpeg+tif+psd all same name import solution found  !!!!!!

    Pardon the fact that this reiterates information now part of other threads, but this is an issue of make or break proportions for some users--it certainly was for me. And it needs prominent clarification
    So I decided to give itits own thread! I had written off LR for production work when the word got out that the same name solution was only partial in 1.1. I needed to see archived folders with same named sets of RAW, tif, jpeg, and psd images ( or combnations thereof). There is a solution to getting these into LR:
    Jim Burgess found that if you import a newly made folder that has a RAW, tif, jpeg, and psd with the same name, it will bring them all in side by side.
    I had at first found that none of my existing folders in the db could be refreshed from the INSIDE and do that--all that got brought in was the jpeg to join the RAW of the same name already in there!
    After learning of Jim's success, I then deleted a folder that was already in the db that had all four same name but different format files in it with only the RAW showing. I then reimported that folder and it saw all the files with the same name (all four formats-RAW,tif,jpeg, and psd) and ingested them.
    Why it can't be refresed from the inside is a mystery to me--or I just haven't discovered any way to do it, and I have tried synchronize folder and reimport repeatedly--neither work. Looks like one has to dump the folder and then import it afresh to get them all--but that for sure will do it! Whoopoeee!
    It does mean that if new file formatted images with the same name get added from outside LR to a folder already in LR with the RAW in there, that you will then have to delete that folder and reimport when you go back to LR.
    Looks like an incomplete implementation of this feature to me, but a whole lot better than not being able to see all same named files side by side.

    It is actually pretty easy for those only wanting to get the jpegs from existing folders, and fine for importing new folders. I am still puzzed why they implemented it this way--or perhaps they intended that one could use synchronize folders to get all the formats in, and this is really just a 'bug'.
    In any event, let's hope they finish the job.

  • P2 Import - Nothing in Transfer Window

    I have been importing data from P2 cards and a Firestore 100 for 18 months on this MBP with no real issues. Tonight I can't get any of the files to come up in the Log and Transfer window.
    I've tried P2 and Firestore folders (and yes, I did organize the Firestore for P2) and neither appear. I've tried copying the data into files and importing from there.
    No messages, no errors, I click on open and nothing. I tried trashing my FCP preferences, I repaired permissions, I rebooted several times.
    I haven't updated or changed anything I can think of in the few weeks since I last edited with this setup.
    I'm stumped and, of course, I'm on location in the middle of a shoot and edit. Any help is GREATLY appreciated.
    FCP 6.0.5, QT 7.6.2 Mac OS 10.5.6. CalDigit Firewire Duo external drive

    I've seen this before. Disable networking. Airport, Ethernet. For some reason, I think that L&T is searching the other machines on the network as well...ODD. But I had that issue, turned off airport...BOOM, they showed up.
    Shane

  • Flash imports not found (events and filesystem)

    I'm trying to learn how to manipulate/display DB data using flash.  In the example in Tour De Flex, I'm given the following list of imports:
    import flash.data.SQLResult;
    import flash.filesystem.File;
    import flash.data.SQLStatement;
    import flash.data.SQLConnection;
    import flash.events.SQLEvent;
    import flash.events.SQLErrorEvent;
    import mx.collections.ArrayCollection;
    However, when i copy and paste these imports into my application, I get the following errors:
    Definition flash.data:SQLConnection could not be found.
    Definition flash.data:SQLConnection could not be found.
    Definition flash.data:SQLResult could not be found.
    Definition flash.data:SQLResult could not be found.
    Definition flash.data:SQLStatement could not be found.
    Definition flash.data:SQLStatement could not be found.
    Definition flash.data:SQLErrorEvent could not be found.
    Definition flash.data:SQLErrorEvent could not be found.
    Definition flash.data:SQLEvent could not be found.
    Definition flash.data:SQLEvent could not be found.
    Definition flash.filesystem:File could not be found.
    Definition flash.filesystem:File could not be found.
    Anybody know how to fix these errors?

    Create a data service. You can use the data features within Flash Builder or roll your own. There are a lot of articles about this, here's one from ADC http://www.adobe.com/devnet/flex/articles/datacentric_development.html.

  • Solution for MOOCData imports not found

    Not sure if anyone else had this issue with the imports for the MOOCData not being found:
    import mooc.data.TemperatureData;
    import mooc.sensor.TemperatureSensor;
    Wanted to share what was done to resolve the problem and get the TemperatureSensor sample not working. The associated JAR file needs to be imported into the project.
    Right mouse click on the TemperatureSensor sample in project explorer, select "properties", then select "Libraries" from the Categories section, then Add JAR/Folder on the right side. It is necessary to browse to the location where the MOOCData project was unzipped. The needed MOOCData.jar file should be located in the dist folder. It may be necessary to load and compile the MOOCData project to create the JAR file.

    Hi Ohio Mike -
    Yes, that is one way to add the MOOCData.jar file to the classpath.  The other is to add MOOCData as a library.  The advantage of this approach is portability - because MOOCData is added as a library, rather than a jar file, the path to the JAR file is relative to the library.  Adding the JAR file directly, the path is relative to the project.  So if you were to give the project to someone else to open, they would have to reset the path to the JAR file.
    Further - for every other project in the course, you will have to explicitly add the JAR file. 
    For instructions on adding MOOCData as a library, see the homework page for lesson 2, Part 3: Lesson 2-3: Create a Door Sensor, Step 1: Build the MOOCData.jar file and create the MOOCData Library in NetBeans.
    Tom

  • Importing mifs into RoboHelp imports Nothing

    Using FrameMaker 7 and RoboHelp 8 - I import regularly (create new project, import frame docs as mifs) and an empty RoboHelp project with NO framemaker docs is created. Someone else has GOT to have had this issue, as it occurs occasionally on my machine (I finally have to import the Frame docs into an old version of RoboHelp (x5), create a project, and then import the x5 RoboHelp project into RoboHelp 8. I've used RoboHelp and FrameMaker for 8 years, so I know I'm performing the import correctly.
    Anyone else out there find this problem? If so, how did you fix it? I have the latest updates installed, etc.
    Thank you.
    Jennifer

    Yes. I did this because when I attempt to import the fm files, it never works, even importing Frame 9 docs into RoboHelp 8. I'm guaranteed to get the result I mentioned, an empty project. At least when I "mif" it, using Frame 9 and Robo 8, it "sometimes" works. I finally gave up trying to import a FrameMaker book or fm files...
    Thanks,
    Jennifer

Maybe you are looking for