Oracle 9iAS Home clone ?

We r replacing the old servers, Is't possible to clone the Oracle 9iAS and infrastructure oracle home to new server, rather than install from scratch in the solaris platform?

Hi;
Please see:
Cloning A Database Home And Changing The User/Group That Owns It [ID 558478.1]
FAQs on RDBMS Oracle Home Cloning Using OUI [ID 565009.1]
Regard
Helios

Similar Messages

  • Problems : Oracle 9iAS Installation Windows XP Home Edition

    Hi All,
    I just installed Oracle 9iAS on Windows XP Home Edition.
    Can anyone give me some idea how to resove the issues with the installation.
    Infrastructure Database Registration Assistance - Canceled
    Please provide either oidpassword or obfuscated password
    Usage: java oracle.ias.ldaporacfg.LdaporaCfg Parameters
    Parameters are -o OracleHome -h oidHost -p oidPort -u oidUser -w oidPassword -d obfPassword
    Infrastructure Schema Configuration Assistant - Failed
    Some of the Config Tools failed. See the log file useinfratool.log for more details.
    1) Infrastructure Instance Configuration Assistant - Failed
    Some of the Config Tools failed. See the log file useinfratool.log for more details.
    2) Oracle 9i Application Server randomize password - Failed
    java.lang.NumberFormatException: %OIDport%
    3) Single Sign-on Configuration Assistant - Failed
    Parameters passed to ssoca : param0:C:\oracle\as param1:orasso param2:***** param3:aurigadatamart.pacbell.net param4:389 param5:cn=orcladmin param6:***** param7:aurigadatamart.pacbell.net param8:1521 param9:mat param10:AMERICAN_AMERICA.WE8MSWIN1252
    Failed to obtain OiD password. Exception is :java.lang.Exception: Version mismatch!
    Thanks in advance for your kind help!!
    Ramesh

    XP is not a supported platform. Please try Win2K or NT.
    See certification matrix:
    http://otn.oracle.com/software/products/ias/files/20_certification.html
    Hope this helps,
    Ashesh Parekh
    Oracle9iAS Product Management

  • Installation problem of Oracle 9iAS rel2 on redhat advanced server 2.1

    Hi,
    I am trying to install Oracle 9ias Rel2 on redhat advanced server 2.1
    Following instructions i downloaded and installed the binutils patch binutils-2.11.90.0.8-13.i386.rpm
    I have set ORACLE_HOME appropriately and created a new user oracle.
    During installtion of 'J2EE and WebCache' , when it starts linking, the installer gives the following error
    Error in invoking target ntcontab.o of makefile /home/oracle/Appserver/network/lib/ins_net_client.mk
    Retry, Ignore,cancel...
    If i press ignore, it gives series of such errors.
    My ORACLE_HOME is /home/oracle/Appserver/
    I am trying to set up the production environment.
    Please help!!!
    thanks
    srinath

    Check out Metalink Note:191567.1
    (http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=191567.1)
    Step 11.
    11. Error in invoking target relink of makefile
    /home/ias/infrastructure/precomp/lib/ins_precomp.mk      
    To fix it:      
    As ias go to $ORACLE_HOME/bin      
    vi genclntsh      
    change line LD_SELF_CONTAINED="-z defs" to LD_SELF_CONTAINED="" (line 147 of 200)      
    save genclntsh file      
    ./genclntsh      
    Created /home/ias/infrastructure/lib/libclntst9.a      
    Click "Retry" at error popup window. Installer will continue.      
    Link successful.

  • XML parser Problem in Oracle 9iAS

    Dear All,
    I am trying to parse a xml file by using a SAX Parser.
    I am getting error "oracle.xml.parser.v2.XMLParseException: Invalid InputSource.'. I have already included 'xerces.jar' in the classpath.
    But it is always taking oracle xml parser.
    How to change the default XML parser in Oracle 9ias.
    This is my report.jsp File
    <%@ page import="java.io.*,java.util.*,java.sql.*,javax.sql.*,javax.naming.*,javax.jms.*,iims.util.*,javax.xml.parsers.*,org.xml.sax.*,org.xml.sax.helpers.*, org.w3c.dom.*"%>
    <%
    generateTree();
    %>
    <%!
         //This method is to be called during startup. It will generate the template and rule nodes.
         public static void generateTree() throws Exception
              //Proceed with this method if the template and rule trees are not built already.
              //if (nodeTemplate != null && nodeRule != null) return;
              // Validate
              Node nodeRule = parseXml("d:\\ora9ias\\j2ee\\home\\Reports\\IIMSReportsTemplate1.xml");
         }//generateTree
    %>
    <%!
         //parse the input file and return a node.
         private static Node parseXml(String fileName) throws Exception
              //Parse the input file
              Document objDocument = null;
              DocumentBuilder objDocumentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
              objDocument = objDocumentBuilder.parse(fileName);
              Node nodeRet = objDocument;
              return nodeRet;
         }//parseXml
    %>
    Report template:
    <ROOT>
         <HEADINGS>
              <HEADING1>H1</HEADING1>
              <HEADING2>H2</HEADING2>
              <HEADING3>H3</HEADING3>
              <HEADING4>H4</HEADING4>
              <HEADING5>H5</HEADING5>
              <HEADING6>H6</HEADING6>
         </HEADINGS>
         <ROWSETS>
              <ROWSET>
                   <COLHDRS>
                   </COLHDRS>
                   <ROWS>
                   </ROWS>
              </ROWSET>
         </ROWSETS>
         <Footer>
              <PageNo>Generate</PageNo>
              <Date>SystemDate</Date>
         </Footer>
    </ROOT>
    Stack Trace:
    strRuleFileD:\ora9ias\j2ee\home\Reports\IIMSReportsRules.xml
    oracle.xml.parser.v2.XMLParseException: Invalid InputSource.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:145)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:208)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:140)
    at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:96)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:165)
    at iims.REPORTS.IIMSGenerateReport.parseXml(IIMSGenerateReport.java:115)
    at iims.REPORTS.IIMSGenerateReport.generateTree(IIMSGenerateReport.java:
    100)
    at iims.REPORTS.IIMSGenerateReport.buildXML(IIMSGenerateReport.java:147)
    at PCREPORT_PROCESS.processBody(PCREPORT_PROCESS.java:3248)
    at PCREPORT_PROCESS.doPost(PCREPORT_PROCESS.java:100)
    at PCREPORT_PROCESS.doGet(PCREPORT_PROCESS.java:92)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java
    :151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Please advise.
    Thanks
    Siva Kishor Rao U

    Adding Xerces XML parser is not enough to make it work. Since some version of JDK (I think 1.4.X) XML parser is included and for older version it can be setup like a runtime option. And this is probably how ORACLE is using its XML parser. If you want to use different parser, you have to pass runtime option to JVM - for Xalan it looks like this:
    -Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl
    ...this way it becomes default parser factory used by javax interface functions. Look for documentation on xml.apache.org
    Myrra

  • Where to keep .rdf file in Oracle 9iAS to generate Report ?

    Hello friends,
    We r using Oracle 9iAS and want to generate the Report but do not know the exact folder(or can say path) to keep .rdf file ?
    Generally, we keep .rdf file in Orahome/Reports/Samples/Demo/x.rdf but it doesn't work in case of Oracle 9iAS.
    If you have any solutions regarding it, please reply.
    Thanks

    1) You can keep it anywhere and give full path name in cmd line
    report=<full_path_name>\report_name.rdf
    OR
    2) Add the required dir to REPORTS_PATH
    Windows - registry variable
    HKLM\software\oracle\home<x>\
    Unix - env variable
    and give
    report=report_name.rdf
    Thanks
    Ratheesh
    [    All Docs     ]
    http://otn.oracle.com/documentation/reports.html
    [     Publishing reports to web  - 10G  ]
    http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
    http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
    [   Building reports  - 10G ]
    http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
    http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
    [   Forms Reports Integration whitepaper  9i ]
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    ---------------------------------------------------------------------------------

  • Migrating existing Developer 6.0 application to Oracle 9iAS

    Hi everybody.
    I am using HP-UX 10.2 (Unix) as my OS for running Oracle 8.0.2. All my application users are in Windows 98 using Developer 2000. Now my concern is I want to bring in an application server (Oracle 9iAS) and make all the users use this application server keeping my DB as it is.
    What can be done to change all my forms and reports to Oracle 9iAS.
    Suggestions will be well appreciated
    Regards
    Shaji Chacko

    Hi,
    I had the same problem than you.Gina from Oracle told me than
    Developer is not compatible with Personal Oracle8 ( 8.0.3 or
    8.0.4) in a standalone environment. You can use Developer 6.0
    with Oracle Entreprise Edition 8.0.5 or any edition of Oracle 8i.
    If you have better solution please let me know
    Thanks in advance
    Francois Leroux
    Nam Ron (guest) wrote:
    : Hi,
    : I installed Developer 6.0 and Personel Oracle 8.0.4 under
    : diffence HOME, but I can make the connection from Developer to
    : Personel Oracle, any solution?
    : Thanks in advance
    null

  • Error after deploying in oracle 9ias

    Hi,
    I built a Struts app with Jdeveloper (win 2000) and deploy it (using a ear file) first on Oracle 9ias (win 2000) and on oracle 9ias (LINUX).
    When I submit my first form, I've got this error under oracle 9ias(LINUX):
    [INFO] PropertyMessageResources - -Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    org.xml.sax.SAXParseException: file:/data/9ias920/j2eehome/j2ee/home/applications/test/test/WEB-INF/struts-config.xml<Line 5, Column 14>: XML-0148: (Error) Invalid element 'form-beans' in content of 'struts-config', expected elements '[message-resources, plug-in]'.
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:166)
         at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:134)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:263)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:141)
         at org.apache.commons.digester.Digester.parse(Digester.java:1495)
         at org.apache.struts.action.ActionServlet.initApplicationConfig(ActionServlet.java:860)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:455)
         at javax.servlet.GenericServlet.init(GenericServlet.java:44)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:1673)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4006)
         at com.evermind.server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2204)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:585)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    [ERROR] Digester - -Parse Error at line 5 column 14:
    Everything looks ok in struts-config.xml. Could anybody help me?

    Hi,
    I built a Struts app with Jdeveloper (win 2000) and deploy it (using a ear file) first on Oracle 9ias (win 2000) and on oracle 9ias (LINUX).
    When I submit my first form, I've got this error under oracle 9ias(LINUX):
    [INFO] PropertyMessageResources - -Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    org.xml.sax.SAXParseException: file:/data/9ias920/j2eehome/j2ee/home/applications/test/test/WEB-INF/struts-config.xml<Line 5, Column 14>: XML-0148: (Error) Invalid element 'form-beans' in content of 'struts-config', expected elements '[message-resources, plug-in]'.
         at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:166)
         at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:134)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:263)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:141)
         at org.apache.commons.digester.Digester.parse(Digester.java:1495)
         at org.apache.struts.action.ActionServlet.initApplicationConfig(ActionServlet.java:860)
         at org.apache.struts.action.ActionServlet.init(ActionServlet.java:455)
         at javax.servlet.GenericServlet.init(GenericServlet.java:44)
         at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:1673)
         at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4006)
         at com.evermind.server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2204)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:585)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    [ERROR] Digester - -Parse Error at line 5 column 14:
    Everything looks ok in struts-config.xml. Could anybody help me?

  • Oracle HTTP server, Oracle 9iAS server, Oracle APPS 11i

    Hi, expert:
    I was reading the Oracle Applicaitons Concepts (11i). There three tiers in Apps. In the middle tier there are: Web Server, Forms Server, Concurrent Processing Server, Reports Server and Admin Server.
    But when I look our company's EBS architecture below (middle tier only here), I am confused. Does 9iAS includs HTTP server? Or 9i is the middle tier? what is Apps 11i? We have Unix and 11.5.10.2.
    Oracle HTTP server
    Oracle 9iAS
    Oracle Apps 11i
    Forms server
    Concurrent Manger
    Really appreciate you to help me.
    Edited by: 870765 on Jul 13, 2011 9:41 AM

    Oracle HTTP server
    Oracle 9iASThis is the web service component -- $IAS_ORACLE_HOME
    If you stop those services you will not be able to access the main login page or any Self-Service page in the application.
    Oracle Apps 11iThis is the application release (which is a group of components/tiers) -- 11i means 11.5.x (where x is from 1 to 10) or 11.5.10.1 (CU1), 11.5.10.2 (CU2)
    Oracle Apps 11i comes with 3 ORACLE_HOMEs (Web: $IAS_ORACLE_HOME, Developer (Forms/Reports): 8.0.6 ORACLE_HOME, Database: $RDBMS_ORACLE_HOME).
    Oracle Apps 11i = Oracle Application Tier ($APPL_TOP, $COMMON_TOP, iAS ORACLE_HOME, 8.0.6 ORACLE_HOME) + Oracle Database Tier (RDBMS ORACLE_HOME).
    Forms serverThis is Oracle Developer 6i home -- 8.0.6 ORACLE_HOME
    If you stop the forms server you cannot open any form.
    Concurrent MangerThis component is not represented in a separate ORACLE_HOME and the executable files can be found under $APPL_TOP directory ($FND_TOP/bin).
    If you stop the CM, you cannot submit concurrent requests but you can still access the application and open the forms.
    If you stop the database, you cannot access any part of the application.
    Thanks,
    Hussein

  • TNS Error while installing Oracle 9iAS R2 on Windows

    I am trying to install Oracle 9iAS R2 9.0.2 on my Toshiba P4 Notebook with Windows 2000 Server. I get this error:
    ORA-12560: TNS:Protocol adapter error
    The log message following:
    Launched configuration tool Single Sign-On Configuration Assistant
    Command which is being spawned is D:\Ora9ias\jdk\jre\bin\javaw -classpath "D:\Ora9ias\jlib\repository.jar;D:\Ora9ias\sso\lib\ossoca.jar;D:\Ora9ias\sso\lib\ossoreg.jar;D:\Ora9ias\lib\xmlparserv2.jar;D:\Ora9ias\jdbc\lib\classes12.zip;D:\Ora9ias\jdbc\lib\nls_charset12.jar;D:\Ora9ias\jlib\jndi.jar;D:\Ora9ias\jlib\ldapjclnt9.jar;D:\Ora9ias\jlib\ojmisc.jar;D:\Ora9ias\j2ee\home\jazn.jar;D:\Ora9ias\j2ee\home\jaznplugin.jar;D:\Ora9ias\j2ee\home\jaas.jar;D:\Ora9ias\jdk\lib\rt.jar;D:\Ora9ias\jdk\lib\i18n.jar;D:\Ora9ias\sysman\webapps\emd\WEB-INF\lib\emd.jar;D:\Ora9ias\sysman\webapps\emd\WEB-INF\lib\click-agent.jar;D:\Ora9ias\dcm\lib\dcm.jar;D:\Ora9ias\sysman\webapps\emd\WEB-INF\lib\portalSMI.jar;D:\Ora9ias\jlib\emConfigInstall.jar;D:\Ora9ias\lib\dms.jar;D:\Ora9ias\opmn\lib\ons.jar;D:\Ora9ias\j2ee\home\oc4j.jar;" oracle.security.sso.SSOConfigAssistant D:\Ora9ias orasso Protected value, not to be logged oguzhan.home 389 "cn=orcladmin" Protected value, not to be logged oguzhan.home 1521 iasdb TURKISH_TURKEY.TR8MSWIN1254
    Configuration tool Single Sign-On Configuration Assistant failed
    ORA-12560: TNS:Protocol adapter error

    I noticed that TNS Listener already running. This error begins when database configuration asisstant window is appearing and trying to run Oracle instance for the first time.
    When the installation finishes with errors, Oracle instance, tnslistener and EMWebSite services are running, but OID(Oracle Internet Directory) and SSO(Single Sign On) services are down.

  • Oracle 9iAS MapViewer 9.0.4 image problem

    I've just installed Oracle 9iAS MapViewer 9.0.4 preview version.
    I am using:
    Oracle 9iAS MapViewer 9.0.4 Preview Version
    Oracle9iAS (1.0.2.2.1) Containers for J2EE
    When i receive picture of map there is no objects on it. On J2ee console i can see following error:
    Image is not in 8.1 format
    Copy of console report is:
    D:\Oracle\iSuites\j2ee\home>java.exe -jar orion.jar -config config\server.xml
    A nonfatal internal JIT (3.10.107(x)) error 'Relocation error: NULL relocation target' has occurred
    in :
    'org/apache/crimson/parser/Parser2.maybeComment (Z)Z': Interpreting method.
    Please report this error in detail to http://java.sun.com/cgi-bin/bugreport.cgi
    Warning: Error reading transaction-log file (/D:/Oracle/iSuites/j2ee/home/persistence/transaction.st
    ate) for recovery: premature end of file
    Forced or abrubt (crash etc) server shutdown detected, starting recovery process...
    Recovery completed, 0 connections committed and 0 rolled back...
    [oracle.lbs.mapserver.oms, INFO] oms servlet document-root path: D:\Oracle\iSuites\lbs\mapviewer\we
    b\
    [oracle.lbs.mapserver.oms, INFO] No init parameter "oms_config". Will use default.
    Oracle9iAS (1.0.2.2.1) Containers for J2EE initialized
    [oracle.lbs.mapserver.core.MapperConfig, INFO] using default config file: D:\Oracle\iSuites\lbs\mapv
    iewer\conf\mapViewerConfig.xml
    [oracle.lbs.mapserver.core.MapperPool, WARN] destroying ALL mapmaker instances.
    [oracle.lbs.mapserver.core.MapperConfig, INFO] Map Recycling thread started.
    [oracle.lbs.mapserver.oms, INFO] *** Oracle Map Viewer is successfully started. ***
    [oracle.lbs.mapserver.MapServerImpl, INFO] adding a map data src [name=mvdemo]
    [oracle.sdovis.CacheMgr, INFO] Setting disk path for cache to: C:\WINNT\TEMP\1\
    [oracle.sdovis.CacheMgr, INFO] Java Object Cache opened. Region=Oracle SDOVIS Cache.
    [oracle.sdovis.CacheMgr, INFO] max_cache_size=64 M, max_disk_cache_size=512 M.
    [oracle.sdovis.ImageCacheMgr, INFO] Setting disk path for image cache to: C:\WINNT\TEMP\1\
    [oracle.sdovis.ImageCacheMgr, INFO] MapViewer Image Cache opened. Region=Oracle SDOVIS IMG Cache.
    [oracle.sdovis.ImageCacheMgr, INFO] max_cache_size=64 M, max_disk_cache_size=1024 M.
    [oracle.lbs.mapserver.core.MapperPool, INFO] added a mapper instance to the pool [data src=mvdemo]
    [oracle.lbs.mapserver.core.MapperPool, INFO] added a mapper instance to the pool [data src=mvdemo]
    [oracle.lbs.mapserver.core.MapperPool, INFO] added a mapper instance to the pool [data src=mvdemo]
    [oracle.sdovis.PredefinedThemeQuery, INFO] Connection is a pre-9i database
    [oracle.sdovis.PredefinedThemeQuery, INFO] Connection is a pre-9i database
    [oracle.sdovis.PredefinedThemeQuery, INFO] Connection is a pre-9i database
    [oracle.sdovis.PredefinedThemeQuery, INFO] Connection is a pre-9i database
    [oracle.sdovis.CacheMgr, WARN] oracle.ias.cache.CacheException:
    null CacheAccess.get
    null exception loading geometry from database: errCount = 1
    null
    Image is not in 8.1 format
    at oracle.ias.cache.CacheInternal.exceptionHandler(Unknown Source)
    at oracle.ias.cache.CacheLoader.exceptionHandler(Unknown Source)
    at oracle.sdovis.CacheGeometryLoader.load(CacheGeometryLoader.java:79)
    at oracle.ias.cache.CacheHandle.findObject(Unknown Source)
    at oracle.ias.cache.CacheHandle.locateObject(Unknown Source)
    at oracle.ias.cache.CacheAccess.get(Unknown Source)
    at oracle.sdovis.CacheMgr.get(CacheMgr.java:182)
    at oracle.sdovis.JDBCDataSource4PT.loadFeaturesInWindow(JDBCDataSource4PT.java, Compiled Code)
    at oracle.sdovis.JDBCDataSource4PT.prepareFeatures(JDBCDataSource4PT.java:184)
    at oracle.sdovis.PredefinedTheme.prepareData(PredefinedTheme.java:79)
    at oracle.sdovis.DBMapMaker$LoadThemeData.run(DBMapMaker.java:1143)
    [oracle.sdovis.CacheMgr, WARN] oracle.ias.cache.CacheException:
    null CacheAccess.get
    null exception loading geometry from database: errCount = 8
    null
    Image is not in 8.1 format
    at oracle.ias.cache.CacheInternal.exceptionHandler(Unknown Source)
    at oracle.ias.cache.CacheLoader.exceptionHandler(Unknown Source)
    at oracle.sdovis.CacheGeometryLoader.load(CacheGeometryLoader.java:79)
    at oracle.ias.cache.CacheHandle.findObject(Unknown Source)
    at oracle.ias.cache.CacheHandle.locateObject(Unknown Source)
    at oracle.ias.cache.CacheAccess.get(Unknown Source)
    at oracle.sdovis.CacheMgr.get(CacheMgr.java:182)
    at oracle.sdovis.JDBCDataSource4PT.loadFeaturesInWindow(JDBCDataSource4PT.java, Compiled Code)
    at oracle.sdovis.JDBCDataSource4PT.prepareFeatures(JDBCDataSource4PT.java:184)
    at oracle.sdovis.PredefinedTheme.prepareData(PredefinedTheme.java:79)
    at oracle.sdovis.DBMapMaker$LoadThemeData.run(DBMapMaker.java:1143)
    [oracle.sdovis.DBMapMaker, INFO] **** time spent on loading features: 10047ms.
    [oracle.sdovis.DBMapMaker, INFO] **** time spent on rendering: 343ms
    Is anybody acquainted with sollution to this problem?
    regards
    Joze Miklavcic

    Are you using an old database, like 8.1.5 or 8.1.6? If you cannot upgrade to 9i, here is the workaround.
    In the mapViewerConfig.xml, add the following line to
    the <global_map_config> section:
    <performance no_unpickler="true" />
    So that it looks like:
    <global_map_config>
    <performance no_unpickler="true" />
    </global_map_config>
    Then restart oc4j. By the way, you seem to be using oc4j
    1.0.2.2, which is too old for mapviewer to work properly (but it is not the cause for the above issue). Please
    upgrade to at lease oc4j 9.0.2.
    thanks,
    lj

  • Oracle 8i home

    Hi,
    I have made the desperately stupid mistake of select my root drive (c:\) as my oracle home directory. I also have 9ias installed (thankfully in a proper directory).
    I do not want to go through uninstalling and reinstalling all my products. Is there any way to change the oracle 8i home (directories and registry entries)?
    Many thanks.
    Sajit

    No I don't think so.

  • Install Oracle 9iAS - Portal & infrastructure

    Hi,
    I installed Oracle 9iAS Infrastructure in c:\OraHome. When I try to install Oracle 9iAS - Portal and Wireless in the next step, it seems not possible to install this product in the same Oracle home (c:\OraHome). Will this cause problems later ? Where can I find information which explains the general concept of 'homes'. If the products are in different homes can Portal and SSO service still draw information from the same database ?
    Kind regards,
    Rene Heuven
    PCA Mobile

    Oracle Application Server middle tiers (Portal for example) needs to exist in a separate Oracle Home from Identity Management or Metadata Repository. Please refer to the installation guide.

  • Do I need start the database before installing Oracle 9iAS portal?

    I found the Oracle white paper which talks about installing
    Oracle8i EE and Oracle 9iAS portal on windows 2000. Based this
    document, after Oracle 8i installaion but before installing
    Oracle 8.1.7.1.1 path, all the Oracle database related services
    startup type have been changed to 'Manual'.
    Based on my understanding, there are some objects will be
    created in this database during the installation of 9iAS portal
    repository. But this oracle white paper didn't say that I need
    have the database ruuning during the 9iAS installation. Do I
    need to start the database before installing 9iAS?
    Thanks

    hi,
    Even i am new to oracle application server and had the same doubt that you have.
    When you install Application Server there would be two tiers installed, application tier and middle tier, these tiers can be running from the same machine or different machines.
    These tiers will have a meta data repository to store application server related data, this database will be installed along with application server.
    It is upto you to install "oracle database 10gR2 " before or after installaion of application server, this will be an independent database which will have its own home, but after this installation you will have three homes, ex: infra_home,mid_home and 10gR2_home.
    by default oracle_home is set to the last installation that happens so if you install the database 10gR2 after installing application server it will point to 10gR2_home, but if you install 10gR2 before and application server later then the oracle home will be infra_home(if both the middle tier and infratier are on the same machine)
    you can always change the oracle home by using set ORACLE_HOME=path/to/oracle/home( in windows)
    or export ORACLE_HOME=path/to/oracle/home (in unix)
    hope this helps....
    regards

  • CMP Entity Beans in Oracle 9iAS

    Hi!
    I've deployed entity beans into Oracle 9iAS, but keep getting the following error each time I try to lookup the bean:
    "javax.naming.NamingException: Unknown reasons [Root exception is org.omg.CORBA.UNKNOWN: minor code: 16 completed: Maybe]"
    The JNDI name of the bean are ok and I'm calling it correctly. I'm calling my a Session Bean in a similar way and it works fine.
    I'm using JDevloper 3.2.3 to deploy the beans and OAS version is 1.0.2.2.
    Thanks for any advices,
    Sebastian

    gday -
    OC4J implements major portion of the EJB 2.0 PFD1 specification.
    It supports the new container contract and persistence model in PFD1, along with associated new XML DD tags, so yes, it does support abstract implementation EJB classes and abstract accessors definitions.
    It does not support the latest EJB 2.0 PFD2 modifications and also does not support the local/remote interface model, EJB-QL, home methods, etc.
    cheers!
    -steve-

  • Oracle 9iAS Session Handling

    I wanted to increase the Session Time Out time in Oracle 9iAS in Win 2000 Server. Can anyone help me where(Which CONF File) should I alter for the same Urgent please.

    If you are running a web service or web application, you need to modify the web.xml file for your application.
    j2ee/home/applications/[yourapplicationname]/[yourapplicationname]/WEB-INF/web.xml
    Mike

Maybe you are looking for