A problem with Package Paths.... i think

Hey im struggling with these errors im getting.
First i should ecplain the layout
this is the directory im working with
public_html>WEB_INF>classes>com
Ok i have 3 java files in here which all compile happily until i try and put them into a package. Once i do this the DbBean,java file complains that it cannot find the other 2 files
This is the error i get when i try to compile it
============================================================
DbBean.java:108: cannot find symbol
symbol : class Product
location: class com.DbBean
public Product getProductDetails(int productId) {
^
DbBean.java:69: cannot find symbol
symbol : class Product
location: class com.DbBean
Product product = new Product();
^
DbBean.java:69: cannot find symbol
symbol : class Product
location: class com.DbBean
Product product = new Product();
^
DbBean.java:93: cannot find symbol
symbol : class Product
location: class com.DbBean
Product product = new Product();
^
DbBean.java:93: cannot find symbol
symbol : class Product
location: class com.DbBean
Product product = new Product();
^
DbBean.java:109: cannot find symbol
symbol : class Product
location: class com.DbBean
Product product = null;
^
DbBean.java:117: cannot find symbol
symbol : class Product
location: class com.DbBean
product = new Product();
^
DbBean.java:149: cannot find symbol
symbol : class ShoppingItem
location: class com.DbBean
ShoppingItem item = (ShoppingItem) enume.nextElement();
^
DbBean.java:149: cannot find symbol
symbol : class ShoppingItem
location: class com.DbBean
ShoppingItem item = (ShoppingItem) enume.nextElement();
^
Note: DbBean.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
==========================================================
The files in the directory are DbBean.java, Product.java and ShoppingItem.java
Here is the code of each file.
package com;
import java.util.Hashtable;
import java.util.ArrayList;
import java.util.Enumeration;
import java.sql.*;
import com.DbBean.*;
//import com.DbBean.Product;
//import com.DbBean.ShoppingItem;
import java.util.*;
public class DbBean {
public String dbUrl = "";
public String dbUserName = "";
public String dbPassword = "";
public void setDbUrl(String url) {
dbUrl = url;
public void setDbUserName(String userName) {
dbUserName = userName;
public void setDbPassword(String password) {
dbPassword = password;
public Hashtable getCategories() {
Hashtable categories = new Hashtable();
try {
Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
Statement s = connection.createStatement();
String sql = "SELECT CategoryId, Category FROM Categories" +
ResultSet rs = s.executeQuery(sql);
while (rs.next()) {
categories.put(rs.getString(1), rs.getString(2) );
rs.close();
s.close();
connection.close();
catch (SQLException e) {}
return categories;
public ArrayList getSearchResults(String keyword) {
ArrayList products = new ArrayList();
try {
Connection connection = DriverManager.getConnection(dbUrl, dbUserName,
dbPassword);
Statement s = connection.createStatement();
String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
" WHERE Name LIKE '%" + keyword.trim() + "%'" +
" OR Description LIKE '%" + keyword.trim() + "%'";
ResultSet rs = s.executeQuery(sql);
while (rs.next()) {
Product product = new Product();
product.id = rs.getInt(1);
product.name = rs.getString(2);
product.description = rs.getString(3);
product.price = rs.getDouble(4);
products.add(product);
rs.close();
s.close();
connection.close();
catch (SQLException e) {}
return products;
public ArrayList getProductsInCategory(String categoryId) {
ArrayList products = new ArrayList();
try {
Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
Statement s = connection.createStatement();
String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
" WHERE CategoryId=" + categoryId;
ResultSet rs = s.executeQuery(sql);
while (rs.next()) {
Product product = new Product();
product.id = rs.getInt(1);
product.name = rs.getString(2);
product.description = rs.getString(3);
product.price = rs.getDouble(4);
products.add(product);
rs.close();
s.close();
connection.close();
catch (SQLException e) {}
return products;
public Product getProductDetails(int productId) {
Product product = null;
try {
Connection connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
Statement s = connection.createStatement();
String sql = "SELECT ProductId, Name, Description, Price FROM Products" +
" WHERE ProductId=" + Integer.toString(productId);
ResultSet rs = s.executeQuery(sql);
if (rs.next()) {
product = new Product();
product.id = rs.getInt(1);
product.name = rs.getString(2);
product.description = rs.getString(3);
product.price = rs.getDouble(4);
rs.close();
s.close();
connection.close();
catch (SQLException e) {}
return product;
public boolean insertOrder(String contactName, String deliveryAddress,
String ccName, String ccNumber, String ccExpiryDate, Hashtable shoppingCart) {
boolean returnValue = false;
long orderId = System.currentTimeMillis();
Connection connection = null;
try {
connection = DriverManager.getConnection(dbUrl, dbUserName, dbPassword);
connection.setAutoCommit(false);
Statement s = connection.createStatement();
String sql = "INSERT INTO Orders" +
" (OrderId, ContactName, DeliveryAddress, CCName, CCNumber, CCExpiryDate)" +
" VALUES" +
" (" + orderId + ",'" + contactName + "','" + deliveryAddress + "'," +
"'" + ccName + "','" + ccNumber + "','" + ccExpiryDate + "')";
s.executeUpdate(sql);
// now insert items into OrderDetails table
Enumeration enume = shoppingCart.elements();
while (enume.hasMoreElements()) {
ShoppingItem item = (ShoppingItem) enume.nextElement();
sql = "INSERT INTO OrderDetails (OrderId, ProductId, Quantity, Price)" +
" VALUES (" + orderId + "," + item.productId + "," +
item.quantity + "," + item.price + ")";
s.executeUpdate(sql);
s.close();
connection.commit();
connection.close();
returnValue = true;
catch (SQLException e) {
try {
connection.rollback();
connection.close();
catch (SQLException se) {}
return returnValue;
package com;
public class Product
public int id;
public String name;
public String description;
public double price;
package com;
public class ShoppingItem
public int productId;
public String name;
public String description;
public double price;
public int quantity;
I'm sure it has something to do with my directory structure, Were using a Tomcat server through Uni so i dont have access to change the context paths or anything like that. Any way to over come this problem would be so much appreciated! if your from Melbourne i'll buy u a beer ;o)
Thanks heaps.
Message was edited by:
SomethingStupid

if you start javac in your directory
public_html>WEB_INF>classes>com
the compiler cannot find the the classes Product and ShoppingItem.
Start the compiler in public_html>WEB_INF>classes:
javac com/*.javaThe path
public_html/WEB_INF/classes
is in your case the classpath. javac uses the current working directory as default classpath. The classpath contains "root points" of package directory trees.

Similar Messages

  • Problem with file path in linux

    hi,
    i have problem with file path accessing in linux. my java class is accessing a abc.cvs file and and getting all data. it is working fine in windows xp. but i run this same file in linux it does not access the abc.cvs file and does not get any data.
    my project structure
    Search
    abc.cvs
    search.SearchMain
    i am sccessing this cvs file in this SearchMain class by this way file name = "abc.cvs"
    It is working fine with window but problem with linux.
    when i place this abc.cvs in a folder as "./data/abc.cvs" also working fine with windows but not in linux.
    I am new for linux.
    Please give me solution.
    Thanks in advance
    Ravi

    forgot to tell,
    then you need to export that path
    export $CLASSPATH
    code}                                                                                                                                                                               

  • Problem with Package Applications

    Ok, I'm trying to migrate an Apex Application from one server to a newer server....
    My custom app I used the theme from Go Live CheckList samples....
    Well, when trying to install that application I get 'Insufficient space to install application ' with a BIG red X...
    I was able to install other Package Application except for the one I need and now my application errors out because of
    some shared Themes....
    At first I thought it was a DB thing so I downgraded back to 10g from 11....but that didn't help...
    Apex works fine...
    Other samples work fine...
    Version Apex 4.2.2 and Oracle XE 10g...

    Yes,
    It errors out in 11g XE and when it was the only Application installed...
    I know the error sounds like the OS but I can't see it being the issue since the
    other server has less space and more application on it...
    Plus the database is empty ....
    The other one is Apex 4.2.1 .. I think there is a problem with 4.2.2 packaged applications..

  • Problem with package in Eclipse

    I am doing in Java codes. There is big problem with those error:
    package org.eclipse.emf.ecore.xml.type.internal;What I should to do that? Do you think I need to download some package from somewhere for Eclipse?
    I have already Eclipse. Please help me how to do that. Thanks.

    I wrote codes in there. But there is some errors in there because they said that I don't have package exist in Eclipse. I have no idea why.
    Those lists below got red line:
    package org.eclipse.emf.ecore.xml.type.internal;
    import org.eclipse.emf.common.util.WrappedException;
    import org.eclipse.emf.ecore.xml.type.InvalidDatatypeValueException;
    import org.eclipse.emf.ecore.xml.type.util.XMLTypeUtil;I tried to run it and the errors said:
    InvalidDatatypeValueException cannot be resolved to a type.
    The declared package "org.eclipse.emf.ecore.xml.type.internal" does not match excpected package"
    The import org.eclipse cannot be resolved
    WrappedException cannot be resolved to a type
    XMLTypeUtil cannot be resolved{code}
    What is wrong with it? Do you think there is missing plugin package or what? Where can I find a package for that?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Hai ,problem with packages

    Hai all,
    i got a problem with user defined packages .i have one class under one package "sg.km" n the class name is kmc.class n i want to use that sg.km.kmc in some another class that is also a part of sg.km package .i hope i'll get reponses to my prob asap.
    thanks in advance
    yours
    srinu kumar reddy

    You should not need to import a class that is in the same package.
    You did not post enough information for me to give you a good answer. You should always post an error message along with any command you entered. All you said was, "i got a problem." We don't know if your problem is with compiling, running, jar file, applet, etc.
    You need to have a directory structure that matches your package. The kmc.class file a sg\km directory path. For example, c:\myjava\classes\sg\km\kmc.class. Then you need c:\myjava\classes directory in your Classpath both for compiling and running.

  • A problem with packages...

    Hi,
    I have just started learning how to create packages. I think I have the directory structure correct and I know I hav eplaced the correct class file in the correct place...but when I try to compile another class (one which uses the class I placed in my package) the compiler complains that it cannot find the first class.
    Here's some truncated code which might help to explain...
    class Item {
        package com.eoghain.ecommerce;
        //code with methods for this class
    class Storefront {
        package com.eoghain.ecommerce;
        //this class instantiated a new item and passes values to it
    class Giftshop {
        import com.eoghain.ecommerce.*;
        //this class uses storefront and item classes
        //to build up an inventory for the shop
    }Item has compiled accurately and I placed the class file in the directory structure c:/java/dev/com/eoghain/ecommerce/Item.class
    I have set the Classpath to include c:/java/dev so I think the compiler should be able to find Item.class. When this didn't work, I also placed Item.class in the directory containing Storefront.java...but Storefront.java still did not compile and the compiler could not find Item.class.
    Any ideas on what I am doing wrong?
    Thanks in advance,
    Eoghain

    Hi kajbj,
    Thank you for the quick response!
    Unfortunately, I have not been able to compile either Storefront.java or Giftshop.java yet as they both need to use an Item object and my compiler cannot seem to find Item.class.
    When I said 'compiled accurately'...I should have been clearer and pointed out that only Item.java compiled accurately.
    I wrote the psudocode in my first post from memory...when I go home I can post the code in it's entirety, if that would help. Which part of the Giftshop.java class is incorrect? If it's the absence of any variables or methods - that was intentional because I just wanted to give an idea of the structure of the application.
    I think the major problem is that when I try to instantiate a new Item object, in Storefront.java, the compiler can't seem to find the relevant files.
    -Eoghain

  • Problems with file paths in ApplescriptObjC

    Hi
    I am having a problem with trying to Open/Read/Write/Close text files in ApplescriptObjC. The following piece of script works in Applescript but when I try to incorporate in ASOC via Xcode I get the following error "Can’t make current application into type «class fsrf»"  and I have no idea what that means!
    I've tried using POSIX paths but still doesn't work. As usual, any help gratefully received.
    I am using the Control Record to hold the last reference number used so when I add another row to a spreadsheet it will generate the next unique reference.
    set filePath "Macintosh HD:Users:Ours:Documents:Cats Protection:Control Record.txt"
    set fileReference to open for access (file filePath) with write permission
    set lastNumber to read alias filePath -- read all data
    set nextNumber to (text -1 thru -2) of lastNumber as integer -- extract last number
    set nextNumber to (nextNumber + 1) -- increment number
    set nextNumber to text (2 * -1) thru -1 of ("0" & nextNumber) -- add leading zero
    write nextNumber to fileReference starting at 9 -- update next number
    close access fileReference

    «class fsrf» is a file system reference. Long story, but cocoa changed the preferred way to handle file references (in 10.6, I think) and sometimes applescript trips over the difference.
    try changing the first three lines like so:
    set filePath to "/Users/Ours/Documents/Cats Protection/Control Record.txt"
    set fileReference to open for access filePath with write permission
    set lastNumber to read fileReference -- read all data
    Cocoa is generally happier with posix paths, open for access shouldn't need the file keyword, and reading from the file reference (rather than specifying the file again) is cleaner.

  • Problem with long path names?

    I tried to unpack the PHP eclipse package to a folder named like the ZIP package (pdt-2.0.0GA_debugger-5.2.15.v20081217-all-in-one-win32). WinRAR stopped with an error message (something like "file name to long"). I was unable to delete the folder until I shortened the directory name. Extracting worked only with a short path name.
    Did anybody experience something like this?
    Windows 7 x64 - Gigabyte EP-45-DS3 (Intel P45 chip set), 4GB RAM, ATI 4670

    I never used the compressed folder option nor I'm sure I really understand what this feature is.I can browse "into" an archive, open it like a folder (is this the "compressed folder" feature?). I extracted the sub folder via drag and drop. The extraction was very slow, but it finished. When I tried to delete the folder, there was an error message stating that the content could not be saved to the trash because of long file names.
    I repeated the test and initially created that awful long path which WinRAR was using (pdt-2.0.0GA_debugger-5.2.15.v20081217-all-in-one-win32) and extracted the archives content into that folder. This time extraction stopped with error message "0x80010135: path too long".
    All if seen so far seems to indicate that there's a max_path problem with Explorer (only x64 version?) and system parts based on it (like wastebasket), not only a problem with WinRAR.
    Windows 7 x64 - Gigabyte EP-45-DS3 (Intel P45 chip set), 4GB RAM, ATI 4670

  • Help: Still got problems with package

    I still got problems with my self-defined packages. My source files are all put in a directory as the package
    name suggests. The questions are:
    1. Before the classes in the package can be cited by the outside programmes, should I compile
    every sources files in the package respectively?
    2. Secondly, I want to put the .class files in another directory, such as \classes\package name, should
    I set the path mannully? If yes, how to do it?
    3. I downloaded some *.java files from Internet and put them in a directory as their package name suggested.
    However, when I run javac a.java I got error: cannot read a.java. What problem could it be?
    Thanks!

    1. Before the classes in the package can be cited by the outside programmes, should I compile
    every sources files in the package respectively?Yes, you can't run .java files. The JVM only uses the .class files, so you have to compile them.
    2. Secondly, I want to put the .class files in another directory, such as \classes\package name, should
    I set the path mannully? If yes, how to do it?You have to put the .class file in the package directory structure. You have no choice about that.
    3. I downloaded some *.java files from Internet and put them in a directory as their package name
    suggested. You need to read a lot of stuff, but start with this:
    http://java.sun.com/j2se/1.4.2/docs/tooldocs/windows/classpath.html
    However, when I run javac a.java I got error: cannot read a.java. What problem could it
    be?You don't run .java files. You run .class files.

  • Problems with packages, classpath and BouncyCastle Library

    Hi everybody!
    Shortly, after adding BC's crypto library to my MOBILE (J2ME) project, when I build it returns a NoClassDefFoundError about java.math.BigInteger class.
    Its package is the same of J2SE but is included in this library. Now, this should not be a problem, 'cause java.math.BigInteger is not included in J2ME, and library's release is (I'm sure) for J2ME...I think it's a problem of classpath but I can't find a way to go on with my project!
    Please, if anybody knows where I'm wrong let me know!!!
    ...and sorry for my bad english...;-)
    b4kk3

    I think the update is buggy. Many people (inc. me) are having problems with it. Am not able to play any songs/videos .. terrible !

  • Rather odd problem with package naming...

    Background info:
    I'm working on a web-based application, on a Tomcat server. Classes (and packages) must be in a subfolder of WEB-INF/classes of the app's root. So the packages are in WEB-INF/classes/com/<package>.
    The older packages are in com/gestion (for the package com.gestion ) and the newer ones are in com/incsolution/<various> where <various> can be either chart, util or pgm - following convention more closely.
    OK! We have a class called SqlBean in com.gestion, which starts off like so:package com.gestion;
    import java.sql.*;
    import javax.sql.*;// stock pour pooled connection c'est dans javax.sql
    import javax.naming.*;
    import java.io.*;
    public abstract class SqlBean
        ...rest of code...
    }and is used in several other objects, like TransferQBean.java, which is in the same package:
    package com.gestion;
    import java.sql.*;
    public class TransfertQBean extends SqlBean
       ...rest of code...
    }Now, i've been working (with others) on this project for 2 years now, and up until last week, there was no problem with the way things were called. Come Monday (April 11), the classes won't compile any more - gives me this error:
    classes/com/gestion/TransferQBean.java [5.1] cannot resolve symbol
    symbol : class SqlBean
    location: class com.geastion.TransferQBean
    public class TransferQBean extends SqlBean
    ....................................................................^
    Now if i add classes to com.gestion to get...
    package classes.com.gestion;
    import java.sql.*;
    public class TransfertQBean extends SqlBean
       rest of code...
    }and same for SqlBean...
    package classes.com.gestion;
    import java.sql.*;
    import javax.sql.*;// stock pour pooled connection c'est dans javax.sql
    import javax.naming.*;
    import java.io.*;
    public abstract class SqlBean
       ...rest of code...
    }...it works, but that's not how it's supposed to be. What puzzles me the most is how this came about suddenly.
    Anyone have an idea what might be causing this? AFAIK, it's abnormal...
    JH

    classes/com/gestion/TransferQBean.java [5.1] cannot resolve symbol
    symbol : class SqlBean
    location: class com.geastion.TransferQBean
    public class TransferQBean extends SqlBean
    ....................................................................^The solution to your problem is simply that your classpath is incorrect at compile-time. How you fix that depends on how you compile (from an IDE, from the command-line javac tool, etc). But whatever you do, don't make your solution depend on a system environment CLASSPATH variable.

  • Problem with packageing and deploying a sample application

    HI,
    I have tried to download and install the server in my system. I am able to deploy a sample application using autodeploy utility.
    But when i tried to package a new sample application and deploy i am getting 404 error. For application server i have used 7070 port and not the default 8080 port will this a problem to package & deploy sample application provided with this software.
    The error is as below:
    HTTP Status 404 - /hello1
    type Status report
    message /hello1
    description The requested resource (/hello1) is not available.
    Sun-Java-System/Application-Server

    Btw, verify that the url you are trying to access is correct. For instance, assuming you deploy app. without --contextroot option. By default,  the url is http://<host>:<port>/<web module name>/<value of url-pattern in web.xml> if your app contains servlet. If your app has jsp then it's http://<host>:<port>/<web module name>/<value of url-pattern in web.xml>/<name of jsp>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Problem with Packaging Material Type

    Hello all Gurus,
    I have a problem with a packaging material type that I have created copying the standrad Packaging material type LEIH. I created a new packing material type ZPAC - Packaging Material copying LEIH.
    I then created a new material master record using this new material type ZPAC.
    When I am using this material for packing in outbound delivery document - VL01N, I am getting the following strange error message:
    20333 does not have packaging material type and is therefore not a pack.mat.
    Please suggest me why this error is coming and how I can rectify this error. Is there any further configuration that I need to do for packaging material types??? Kindly suggest.
    Thanks and Regards,
    Umakanth.

    Hi,
    Material type is not enough, you have to maintain proper master data as well as config.
    At least please maintain value in MARA-VHART for the packaging material. Please also check these links how HUM works:
    http://www.sap-img.com/sap-hu.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/c8/a44b779f3211d2858d0000e81ddea0/frameset.htm
    Regards,
    Csaba

  • Nautilus have problem with opening paths other than /home

    Hi,
    I have strange problem with nautilus. When I want to open some path ie. /media/*some mounted device* or /tmp usign gnome-menu "Places" I see hourglass cursor for a while and then nothing happens. Only home would open with "Places" however typing nautilus path in console opens the specified path instantly. If I open /home and then go to desired place and next try to again open this path with "Places" menu it works.
    How could I fix this issue?
    Last edited by karm (2011-01-27 20:54:26)

    karm wrote:
    Sorry for late reply I was not here for a while.
    here are the permissions:
    /media
    drwxrwx--- 1 root staff 8,0K 02-13 04:35 wd
    Unless your user is part of the "staff" group, you wouldn't be ale to open "wd".
    drwxrwxrwt 14 root root 20K 02-20 03:03 tmp
    Permissions are good here.  You should be able to open everything.  *But* if you want, issue a "chown root:users" on /tmp as root and see if that makes a difference.  (I'm assuming "users" is your default group.  It is for me on Arch.)
    /home
    drwxr-xr-x 49 karm root 20K 02-19 21:07 karm
    You own home so that is as it should be.
    > As I wrote before, only /home is opening corectly. It may be important that /media/wd is a mount point of an external usb hard drive. Does this ring some bells?
    >Regards,
    >karm
    I don't know if you're having a Gnome specific issue or not but I would play around with changing ownership of the problematic folders to your user and see if it makes a difference.

  • Problem with packages, part duex

    Solaris 11 x86 under VBox
    Continuing from problem adding packages
    I got the mechanics of adding packages working and successfully installed the packages for x11 support.  Next I need to add some packages to install Oracle database.  Packages are listed in the database Installation Guide.
    First, check to see if the required packages are already installed:
    root@vbsolsrv02:~# pkginfo -i SUNWarc SUNWbtool SUNWhea SUNWlibC SUNWlibms SUNWsprot   SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt
    system      SUNWarc   Lint Libraries (usr)
    system      SUNWbtool CCS tools bundled with SunOS
    system      SUNWhea   SunOS Header Files
    system      SUNWlibC  Sun Workshop Compilers Bundled libC
    system      SUNWlibms Math & Microtasking Libraries (Usr)
    system      SUNWsprot Solaris Bundled tools
    system      SUNWtoo   Programming Tools
    ERROR: information for "SUNWi1of" was not found
    ERROR: information for "SUNWi1cs" was not found
    ERROR: information for "SUNWi15cs" was not found
    ERROR: information for "SUNWxwfnt" was not found
    Not being familiar with the interpretation of the error msgs (or much else with Solaris) I figured it wouldn't hurt to just try to install them.
    root@vbsolsrv02:~# pkg install SUNWi1of
    pkg install: The following pattern(s) did not match any allowable packages.  Try
    using a different matching pattern, or refreshing publisher information:
            SUNWi1of
    root@vbsolsrv02:~# pkg install SUNWi1cs
    No updates necessary for this image.
    root@vbsolsrv02:~# pkg install SUNWi15cs
    No updates necessary for this image.
    root@vbsolsrv02:~# pkg install SUNWxwfnt
    pkg install: The following pattern(s) did not match any allowable packages.  Try
    using a different matching pattern, or refreshing publisher information:
            SUNWxwfnt
    root@vbsolsrv02:~#
    at this point, repeating the pkginfo command produced exactly the same results as before.
    So, what am I to learn from this and how should I proceed from here?

    PascalKreyer-Oracle wrote:
    These packages are requirement for Solaris 10. As these packages are not available for Solaris 11, please check again in the database installation guide to determine which packages are really necessary.
    Ah, the devil is always in the fine print.  I am planning on installing Oracle 11.2, so from the Database Quick Installation Guide
    11g Release 2 (11.2) for Oracle Solaris on x86-64,  the packages were listed under this statement:
    The following packages (or later versions) are required for Oracle Database 11g Release 2 (11.2) on Oracle Solaris 10:
    I overlooked the proviso "on Oracle Solaris 10".  There was no separate listing for Solaris 11.
    Also, going back and double checking the entire section on software requirements, I see that only Oracle 11.2.0.3 or later is supported on Solaris 11.  So if I want to install Oracle 11.2.0.1, I'll need to drop back to solaris 10.
    Thanks for the focus.

Maybe you are looking for

  • Seriously, Nokia what are you playing at?

    I know there are aleady countless threads about the battery life but I really want a proper response from anyone on here who can speak for nokia? WHY are you washing your hands of "battery issues " after this latest update when there are clearly so m

  • IPod touch 4g- Updated, then tried to restore and it won't work.

    I just updated my iPod touch 4g. I'm trying to restore it now, but it won't work and says 'Error 1611.'  My ipod has the 'plug into iTunes' symbol up, but my iPod is plugged in and it doesn't make a difference. I've tried restoring it several times w

  • Email notification of warning messages generated in /var/adm/messages

    I�m using �mdmonitord� to periodically check status of my disks in RAID 1 (using Solaris Volume Management) If/when problem occurs the errors/warnings will be logged to[b] /var/adm/messages file. What do I need to configure/enable to monitor /var/adm

  • Lion server migration from 10.6 wiki dead, mail dead, ical dead

    i have a mac mini w leopard server- everything worked perfect i upgrade and migrated to lion server nothing working, wiki, mail, or icalendar any ideas- other than going back to restore of timemachine of leopard server thanx CT

  • Java Blocked This Morning

    I seem to be having Java plug-in problems with both Mac OS 10.6 and Mac OS 10.7 systems on our network this morning, in both cases Java applications are unable to run either from Safari or Firefox. In 10.7 I get a message about the plugin being block