Question about an Oracle SID

I'm a bit confused about what a SID is. I understand that it represents a Database instance. However, as I create my database for the first time, I'm asking myself if I really understand what a SID is?
My impression of a SID is a database instance that can contain/manage serveral databases. Is that correct?
However, I wonder if I'm being miss lead by my thinking. During the database creation process it appears that there is a one-to-one relationship between a database and a SID. Meaning that a SID and database are a unique pair and that a one-to-one relationship exist only.
That being the case when it comes the environment variable for "Oracle_SID" does it support having multiple SID's. What is the maximum number of SID that it can support? When connecting to a database in Oracle do I have to supply both the SID and global database name to make a connection? I plan to connect to my databases using both Java and C++.
Thanks

Thanks for you help. However, My question is about
the "Oracle_SID" environment variable. I fully
understand that a SID helps identify resources to
manage a database. However, a server/machine can
have any number of database residing on the
server/machine.
The installation instructions talk about the
environment variables for a machine with the
"Oracle_SID being one of those variables. Based on
what you are telling me a server/machine can have
only 1/one database residing on it based on the fact
that the "Oracle_SID" environment variable can only
accomodate one/1 SID. NO. That is NOT what I said. I said - One SID will equate to One database instance.
You can have any number of SIDs.
BUT you set the SID as an environment variable to tell the software which instance to you wish to connect. ORACLE_SID can only be set to one value. That represents the database instance to which you are about to connect. A tool such as SQLPlus supports only one connection to one instance at a time.
>
Is the "Oracle_SID" environment variable important
when it comes to connecting to a database remotely?Not really. The key is the SERVICE_NAME which is used to tell the LISTENER which SERVICE you want to use.
By default, there is one service that has the same name as the instance's SID.
There is a connection description file, called TNSNAMES.ORA. That file is used the same as /etc/hosts in *nix - pass in an alias and get a connection description - IP in the case of HOSTS; machine, listener port and 'instance information' in the case of TNSNAMES.ORA
The typical connection to an instance is something like
sqlplus hans/test@ORCL
The ORCL is the alias to look up in the TNSNAMES.ORA (or other lookup technique - equivalent to DNS). The client looks up the 3 pieces of information, sends a request to the listener which is (hopefully) listening on the specified port on the indicated machine. It then uses the 'instance information' to ask the database instance for a thread or process.
Oracle8 and older used ORACLE_SID as the 'instance information'
Oracle8i and newer uses SERVICE_NAME as the 'instance information'.
Some Newbie DBAs equate SERVICE_NAME to ORACLE_SID, because one of the services has the same name as the SID. However, one can have up to 64 SERVICES managed by a single instance.
Some Experienced DBAs equate SERVICE_NAME to ORACLE_SID, because they have not spent time in the documentation to understand the difference between SERVICE_NAME and SID. As a result, they generally do not 'get it' when it comes to resource management or instance consolidation.
>
If I'm managing a database at the server and the
server has multiple database residing on it, how do I
define a SID for each database using the "Oracle_SID"
environment variable?If on LINUX, using bash, you simply
export ORACLE_SID=abc
or use the oraenv script to set the SID and all the other environment variables based on the SID.I give a description and example below.
>
I'm just not clear about the relationship between the
"Oracle_SID" environment variable and access a
database when logged onto the database
server/machine.Say I have 2 databases, called 'ORCL' and 'TEST', each with a user (and schema) called 'hans'. Both are down. I want them both up. Therefore I want to start 2 instances.The pattern, on Linux (it's subtly different on Windows) is
# set the environment to start ORCL
. oraenv
ORCL
# or
export ORACLE_SID=ORCL
export ORACLE_HOME=some-directory-path-to-the-ORCL-database's-software
export PATH=$PATH:$ORACLE_HOME/bin
# use the tools to start the database
sqlplus / as sysdba   # note that I did not specify SID ... that was given above
startup
exit
# at this point ORCL database, and all the schemas in the ORCL database, are available
# from anywhere in the network, or on the local machine, I can:
sqlplus hans/password@ORCL
select * from dual;
exit
# but TEST is not up and
sqlplus hans/password@TEST
#  will fail with a 'database not available' type of message
# now set up to start test.  Use oraenv OR do it manually
export ORACLE_SID=TEST
export ORACLE_HOME=the-path-to-the-TEST-database's-software-which-could-be-the-same
export PATH=$PATH:$ORACLE_HOME/bin
# and use the tools to start the database
sqlplus / as sysdba 
startup
exit
# note that I did not specify SID ... that was given above and tells SQLPLUS to establish a connect to the
# instance called TEST.  SQLPlus has special powers in the "as sysdba" mode - it can execute the
# startup process.
# NOW the TEST and the ORCL databases are available through the TEST and ORCL instances
sqlplus hans/password@TEST
select * from dual;
connect hans/password@ORCL
select * from dual;
exit>
I understand that when using the Enterprise Manager I
have to specify the SID and database name but, does
the environment variable "Oracle_SID" have to reflect
a SID for each database that is present on the
server/machine.
The SID tells the system
1) which shared memory segment to use - if we are on the server
2) which instance to connect to over the network, because the SID is the same as the default SERVICE
In Enterprise Manager Database Control, the entry point for the configuration files is a special directory under the ORACLE_HOME that consists of the machine name and the SID. The purpose of setting the ORACLE_SID in this case is to tell the database control which directory to use to find the EM configuration files for that database and instance.
No matter which way you slice it:
1) an Oracle SID is used to point to the configuration information for one database and it's related instance;
2) an Oracle SID is really only meaningful on the machine where the instance is to run;
3) an Oracle SID environment variable can only contain the value for one SID if it is to be intepreted by Oracle programs;
4) an Oracle SID plays no significant part in establishing the connection for an appication;
5) an Oracle SID MAY be used as input to environment-setting programs that make it easier to get the right environment for an application;
6) an Oracle SID is NO LONGER the correct way to set up the TNSNAMES.ORA file to establish a connection.

Similar Messages

  • Question about starting Oracle 9i manually!!!!

    Hi friends,
    I am a student and a newbie in Installing Oracle 9i Database.
    At the installation I choose the Oracle Enterprise Edition and choose also that the Installation wizard
    automatically create a DB.
    My problem is, that Oracle starts up every time I boot up my machine.
    Now my question is: How can I configure Oracle that it don't start every time I boot up the machine??
    I would like to start up Oracle only if I want it so!!
    So how can I do this???
    I hope that somebody of you guys can help me!!
    thanxx
    Schobbi

    1) Go to Start ` Settings `Control panel `
    (admin tools if you use win2k)` Services
    2)find out the serive like OracleServiceYOURDBNAME
    double click that service and choose startup type to manual
    this will make your database to stop starting automatically.
    3)when you want to start manually
    go to command prompt type
    set oracle_sid=yourdatabasename
    sqlplus /nolog
    connect / as sysdba
    startup pfile=path of your databse par file.
    (startup pfile=\oracle\admin\ora\pfile\init.ora or just type startup ).

  • Question about how Oracle manages Redo Log Files

    Good morning,
    Assuming a configuration that consists of 2 redo log groups (Group A and B), each group consisting of 2 disks (Disks A1 & A2 for Group A and Disks B1 and B2 for group B). Further, let's assume that each redo log file resides by itself in a disk storage device and that the device is dedicated to it. Therefore in the above scenario, there are 4 disks, one for each redo log file and, each disk contains nothing else other than a redo log file. Furthermore, let's assume that the database is in ARCHIVELOG mode and that the archive files are stored on yet another different set of devices.
    sort of graphically:
        GROUP A             GROUP B
          A1                  B1
          A2                  B2The question is: When the disks that comprise Group A are filled and Oracle switches to the disks in Group B, can the disks in Group A be taken offline, maybe even physically removed from the system if necessary, without affecting the proper operation of the database ? Can the Archiver process be temporarily delayed until the disks (that were removed) are brought back online or is the DBA forced to wait until the Archiver process has finished creating a copy of the redo log file into the archive ?
    Thank you for your help,
    John.

    Hello,
    Dropping Log Groups
    To drop an online redo log group, you must have the ALTER DATABASE system privilege. Before dropping an online redo log group, consider the following restrictions and precautions:
    * An instance requires at least two groups of online redo log files, regardless of the number of members in the groups. (A group is one or more members.)
    * You can drop an online redo log group only if it is inactive. If you need to drop the current group, first force a log switch to occur.
    * Make sure an online redo log group is archived (if archiving is enabled) before dropping it. To see whether this has happened, use the V$LOG view.
    SELECT GROUP#, ARCHIVED, STATUS FROM V$LOG;
    GROUP# ARC STATUS
    1 YES ACTIVE
    2 NO CURRENT
    3 YES INACTIVE
    4 YES INACTIVE
    Drop an online redo log group with the SQL statement ALTER DATABASE with the DROP LOGFILE clause.
    The following statement drops redo log group number 3:
    ALTER DATABASE DROP LOGFILE GROUP 3;
    When an online redo log group is dropped from the database, and you are not using the Oracle Managed Files feature, the operating system files are not deleted from disk. Rather, the control files of the associated database are updated to drop the members of the group from the database structure. After dropping an online redo log group, make sure that the drop completed successfully, and then use the appropriate operating system command to delete the dropped online redo log files.
    When using Oracle-managed files, the cleanup of operating systems files is done automatically for you.
    Your Database wont be affected as you can operate with 2 redo log files in each group as The minimum number of redo log files required in a database is two because the LGWR (log writer) process writes to the redo log files in a circular manner. so the process will hang becuase you are having 2 only groups if you want to remove 1 add a third one and make it the current group then remove the one you want to be offline.
    Please refer to:
    http://download.oracle.com/docs/cd/B10500_01/server.920/a96521/onlineredo.htm#7438
    Kind regards
    Mohamed
    Oracle DBA

  • Question about  import oracle dump size 20GB

    I got the oracle dmp file size 20GB from client
    export from LInux AS4 ( oracle database version 9R2 )
    is it posible to import in to windows server 2003 running oracle 10gR2
    please post your views on this

    Why notll, exp and imp are widely used for cross platforms enviournments. you go through with your imp and if you come up with something which needs to be sort out , then update the thread with your problems .
    hare krishna
    Alok

  • Question about installation Oracle Siebel 8.2

    Hello, i have an error when install the siebel_tools and siebel_web_client.
    My steps are like this :
    1. Go to folder C:\Siebel\8.2.2.2\Windows\Client\Siebel_Tools\Disk1\install
    2. Run module.exe
    [http://i1272.photobucket.com/albums/y388/jeffry_tani/Untitled_zps817d3db5.png]
    [http://i1272.photobucket.com/albums/y388/jeffry_tani/Untitled_zps137680b3.png]
    And an error happened
    [http://i1272.photobucket.com/albums/y388/jeffry_tani/Untitled_zpsc49ba1f3.png]
    What should i do to fix this error ? any suggestion ? I am newbie in this forum and want to learn more about siebel :)
    Thx

    It looks like you are trying to install 8.2.2.2, but it can only be applied on top of 8.2.2.0.
    I'm not sure why 8.2.2.0 is not available for Win32, but it is available for Win64.

  • Questions about an Oracle Feature

    There are JDBC extensions that allow to use a prepared statement and send in queries with different values for these statements in a batch. So, if you want to send in 10 updates at a time, it will wait until there are 10 available until the execution occurs. Does anyone know if there is a timeout, or something, that will allow the statements to execute if there are not 10 in a certain time. So, these statement would execute either once 10 are ready -or- every 5 minutes. Is there anything like this???

    There is no timeout, but you can explicitly send a batch with the sendBatch() method, rather than fill the rows until the maximum is reached.
    JDBC 2.0 uses a similar, though slightly different mechanism. In this case, all of the batching happens explicitly - there are no implicit limits when a batch is automatically submitted. Oracle JDBC drivers have supported this standard batching API since 8.1.6.
    SQLJ also supports batching since version 8.1.6. You can set a maximum batch limit, as in Oracle JDBC. The batch is automatically submitted when execution moves to a different statement, or when you execute a COMMIT/ROLLBACK.

  • Some questions about accessing Oracle from another machine with OEM

    I followed this great tutorial on how to get oracle8i installed and working on rh6.2. http://jordan.fortwayne.com/oracle/
    Great job to the writer)))
    Know I need a little more info on where to go after it is up and running...
    I downloaded the client for NT and I would like to access the Linux box using OEM from a Win2000 laptop however I really have no clue what I am doing and how to make this happen can someone please point me to a tutorial simular to the install tutorial I found?
    Thanks
    [email protected]

    You need to install OEM on your Windows box. From there go to your OEM configuration assistant in the start menu. Run it and point it to one of your instances on your DB server. You must provide a user name and password for the DB it will then connect and build a repository for OEM. After that run the OEM console application and connect to OEM using sysman for your login and oem_temp as your password. This should get you going.

  • Question about Skywire Documaker - where can it pull data from ?

    Does the Skywire Documaker product have an ability to pull data from a Relational Database into a form’s field? What other data sources are available to pull data, besides the extract data file (DAT), and xml file?

    In response to your question about where Oracle Documaker pulls data from:
    DB calls may be done as part of the document generation process to look up data. However it is not designed to maintain and open DB connection. This is also not a recommended best practice. Transall is shipped as part of the Doucmaker solution and it is designed to connect to multiple sources (including DB) and produce an input file for Documaker. Creating DB connections is considered an IT related task and does not fit in with positioning Documaker as a business user tool.

  • Questions about free Download Oracle 10g, Database and Developer suite

    Hi everyone, got some questions..
    1) Is it possible to download free Oracle 10g and Developer suite? is a 30 day license trial or something like that?
    2) On windows systems which are the minimun requirements?, for example in a Pentium 4, 512Mb RAM, Windows XP Home edition is OK?
    3) Should I download Standard Edition? Personal?
    4) If I am trying to update my Oracle Developer knowledge (I was developer on 1999 with Oracle 7.3 and Developer 2000) what products do I have to install?? Oracle DB 10g, Developer Suite,Application Server too?, what else?
    Thanks guys!
    J.

    My answer you could find here Questions about free download Oracle 10g, Developer Suite

  • Question about Communication with Oracle 7

    Hi,
    Generally we use Oracle Snapshots for Communication, but since Oracle 9.2.0.5 do not work with Oracle 7.1.5.2.4. we are thinking about do use Oracle Interconnect for this Link.
    Now I have the following two Questions about Communication with Oracle 7:
    1. Is an Adapter for Oracle 7.1.5.2.4 available?
    2. From your experience, does it make sense to install Oracle Interconnect for implementation of only one read only Link with 3 Tables if an OAS for BI is available?
    Thanks,
    Hannes

    1. The Oracle database adapter is for Oracle 8i and up. I checked the code needed in the database and doubt that will work in Oracle 7.
    1. The other option Advanced Queuing also needs 8i and up.
    2. For me it doesnt make sense that you want to connect to Oracle 7. Oracle 7 is unsupported and should not have to be developed against. Also the license costs for Oracle Interconnect ~17K without any discount is a bit steep for read only links to three tables. Having the OAS means you wont have to pay another additional ~17K for the apps server.

  • A question about Oracle 1g R2 Enterprise Edition license

    Dear all,
    I have a question about Oracle license and I would appreciate if you could kindly help me.
    I have installed an Oracle server (11g R2 Enterprise edition) on a linux virtual machine. The pc used for this purpose
    is my enterprise laptop (therefore a professional and not a personal Computer). However, I use the this Oracle Server
    only for learning purpose, that is, only for running the examples in my Oracle Press books (SQL, PL/SQL and some
    administration tasks) just for learning the stuff.
    There is absolutely no data related to my enterprise, stored or used on this server. Whenever I want to work with my
    enterprise data, I use the Oracle server of the enterprise which has of course the appropriate license. So as I said, I
    use this Enterprise server on the virtual machine only for running queries/programs in my Oracle Press books just for
    learning and I'm the sole person who uses this server (no remote connection for other users).
    The reason for which I needed to install this server on my PC was that our DBA couldn't provide a training environment
    for me with all required privileges and functionalities.
    Am I supposed to buy a license for this installed Enterprise server on my virtual machine?
    Thanks in advance,
    Dariyoosh

    drop.any wrote:
    From OTN license agreement:
    >
    LICENSE RIGHTS
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose. If you use the application you develop under this license for any internal data processing or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions We retain all ownership and intellectual property rights in the programs. The programs may be installed on one computer only, and used by one person in the operating environment identified by us. You may make one copy of the programs for backup purposes.
    You may not:
    - use the programs for your own internal data processing or for any commercial or production purposes, or use the programs for any purpose except the development of your application;
    - use the application you develop with the programs for any internal data processing or commercial or production purposes without securing an appropriate license from us;
    - continue to develop your application after you have used it for any internal data processing, commercial or production purpose without securing an appropriate license from us, or an Oracle reseller;
    - remove or modify any program markings or any notice of our proprietary rights;
    - make the programs available in any manner to any third party;
    - use the programs to provide third party training;
    - assign this agreement or give or transfer the programs or an interest in them to another individual or entity; - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs;
    - disclose results of any program benchmark tests without our prior consent.
    >Hello again,
    Thank you both of you for your help. As it seems to me
    >
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose.
    >
    I think self training can be considered in this category, therefore I think there is no need to buy a license for that.
    Kind regards,
    Dariyoosh

  • Several questions about oracle ASM in 11gR2.

    Hi, all.
    The db is 11.2.0.3 on a linux machine.
    I have several questions about oracle ASM functionality.
    1. V$ASM_DISKGROUP.ALLOCATION_UNIT_SIZE is the stripe size in bytes??
    2. V$ASM_DISK.DISK_NUMBER is unique to a physical disk??
    3. if the second question is the case,
    disk_number=0 (a physical disk) has 14 partition on it.
    And each partition belongs to several diskgroups.
    Is ths right??
    with q1 as (
         select /*+ use_hash(b,a) */
              disk_number,b.group_number,b.name,a.path,sum(os_mb) tot_size ,count(*) cnt
         from v$asm_disk a, v$asm_diskgroup b
         where a.group_number=b.group_number
         group by disk_number,b.group_number,b.name,a.path
         order by disk_number,b.group_number,b.name
    select disk_number,group_number,name,path,tot_size,
           sum(tot_size) over (partition by disk_number) disk_size,
           sum(cnt) over (partition by disk_number) parition_cnt_per_disk
      from q1
      order by q1.disk_number,group_number
    DISK_NUMBER     GROUP_NUMBER     NAME     PATH     TOT_SIZE     DISK_SIZE     PARITION_CNT_PER_DISK
    0     1     ARCH     /dev/raw/raw100     53256     454460     14
    0     2     AAAREDO1     /dev/raw/raw111     10240     454460     14
    0     3     AAAREDO2     /dev/raw/raw113     10240     454460     14
    0     4     CRS     /dev/raw/raw83     3000     454460     14
    0     5     BBBDATA1     /dev/raw/raw10     50232     454460     14
    0     6     BBBDATA2     /dev/raw/raw41     50232     454460     14
    0     7     BBBREDO1     /dev/raw/raw1     10240     454460     14
    0     8     BBBREDO2     /dev/raw/raw3     10240     454460     14
    0     9     CCCDATA1     /dev/raw/raw75     76400     454460     14
    0     10     CCCDATA2     /dev/raw/raw165     51300     454460     14
    0     11     CCCREDO1     /dev/raw/raw118     10240     454460     14
    0     12     CCCREDO2     /dev/raw/raw120     10240     454460     14
    0     13     CCCDATA1     /dev/raw/raw125     51300     454460     14
    0     14     BBBDDATA     /dev/raw/raw71     57300     454460     14
    .Thanks in advance..
    Best Regards.
    Edited by: 869578 on 2012. 12. 23 오후 10:05

    1. No. The stripe size always equals 128 KB in any configuration.
    (http://docs.oracle.com/cd/E11882_01/server.112/e18951/asmcon.htm#BABCGDBF)That is not a true statement. Please read the document, the stripe size depends upon what method of striping we using (fine-grained or coarse-grained)
    --from the same oracle document:
    To stripe data, Oracle ASM separates files into stripes and spreads data evenly across all of the disks in a disk group. The fine-grained stripe size always equals 128 KB in any configuration; this provides lower I/O latency for small I/O operations. The coarse-grained stripe size is always equal to the AU size (not the data extent size).
    --are we using fine grained or coarse-grained ? and how to change the striping method (using TEMPLATES)
    http://docs.oracle.com/cd/E11882_01/server.112/e16102/asmfiles.htm#g2223792
    also see following:
    http://oracletechlovers.blogspot.com/2012/06/asm-differences-between-corse-and-fine.html

  • Few questions about Oracle Times ten

    Moved to Few questions about Oracle Timesten
    Edited by: ankurk on Nov 4, 2010 6:50 PM
    Moved to right place... timesten

    Hi,
    it is better to ask in the [url http://forums.oracle.com/forums/forum.jspa?forumID=244] Times Ten Forum.
    Herald ten Dam
    http://htendam.wordpress.com

  • Question about dependent projects (and their libraries) in 11g-Oracle team?

    Hello everyone,
    I have a question about dependent projects. An example:
    In JDeveloper 10.1.3.x if you had for instance 2 projects (in a workspace): project 1 has one project library (for instance a log4j library) and project 2 is a very simple webapplication which is dependent on project 1. Project 2 has one class which makes use of log4j.
    This compiles fine, you can run project 2 in oc4j, and the libraries of project 1 (log4j) are added on the classpath and everything works fine. This is great for rapid testing as well as keeping management of libraries to a minimum (only one project where you would update a library e.g.)
    However in 11g this approach seems not to work at all anymore now that weblogic is used, not even when 'export library' is checked in project 1. The library is simply never exported at all - with a noclassdeffound error as result. Is this approach still possible (without having to define multiple deployment profiles), or is this a bug?
    Thanks!
    Martijn
    Edited by: MartijnR on Oct 27, 2008 7:57 AM

    Hi Ron,
    I've tried what you said, indeed in that .beabuild.txt when 'deploy by default' is checked it adds a line like: C:/JDeveloper/mywork/test2/lib/log4j-1.2.14.jar = test2-view-webapp/WEB-INF/lib/log4j-1.2.14.jar
    Which looks fine, except that /web-inf/lib/ is empty. I presume its a sort of mapping to say: Load it like it in WEB-INF/lib? This line is not there when the deploy by default is not checked.
    I modified the TestBean as follows (the method that references Log4j does it thru a Class.forName() now only):
    public String getHelloWorld() {
    try {
    Class clazz = Class.forName("org.apache.log4j.Logger");
    System.out.println(clazz.getName());
    catch(Exception e) {
    e.printStackTrace();
    return "Hello World";
    In both cases with or without line, it throws:
    java.lang.ClassNotFoundException: org.apache.log4j.Logger
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:283)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:256)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:54)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:176)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:42)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:169)
         at nl.test.TestBean.getHelloWorld(TestBean.java:15)
    Secondly I added weblogic.xml with your suggested code, in the exploded war this results in a weblogic.xml which looks like:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-web-app.xsd" xmlns="http://www.bea.com/ns/weblogic/weblogic-web-app">
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    <jsp-descriptor>
    <debug>true</debug>
    <working-dir>/C:/JDeveloper/mywork/test2/view/classes/.jsps</working-dir>
    <keepgenerated>true</keepgenerated>
    </jsp-descriptor>
    <library-ref>
    <library-name>jstl</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    <library-ref>
    <library-name>jsf</library-name>
    <specification-version>1.2</specification-version>
    </library-ref>
    </weblogic-web-app>
    The only thing from me is that container-descriptor tag, the rest is added to it during the deployment. Unfortunately, it still produces the same error. :/ Any clue?

  • Question about SAP installation with Oracle 10g

    I have successfully installed Oracle 10g on Windows server 2008 R2 64bit. I can connect to the database using mysql or through command prompt and run SQL commands.
    I started installing the SAP EHP1 for SAP NetWeaver 7.0 ("51038620_13      BS 7 SR1 Installation Master Windows Server on x64 64bit") The installation goes very smooth. I choose the SAPSID and the DBSID sid, but then it gives an error stating to install oracle and continue or stop the installation & install Oracle. I have tried on continuing the installation since Oracle is already installed but I get the same message again and again.
    Does it have to do with ORACLE 10g Sid. My Oracle SID is set to "ORCL" should it be the same as DBSID (during SAP Installation). Or the Oracle needs to be installed after SAP installation gets to the point for Oracle Installation. Please assist what needs to be changed. I can reinstall Oracle if needed. Any tips or comments would be nice.

    > Does it have to do with ORACLE 10g Sid. My Oracle SID is set to "ORCL" should it be the same as DBSID (during SAP Installation). Or the Oracle needs to be installed after SAP installation gets to the point for Oracle Installation.
    You can't "change". You installed the Oracle software using "setup.exe" - which is wrong. You also created an example database - which is also not correct.
    The Oracle software is installed, according to the installation guide, as
    - start "sapserver.cmd" on the Oracle DVD (the SAP media)
    - install the software according to the installation guide
    - install the latest patchset
    - install the latest PSU patch
    --> and then start sapinst.
    Markus

Maybe you are looking for

  • Package execution problem with SQLSERVERAGENT

    Hello, I'm having a problem with the execution of SSIS packages: I created locally a package with SQL Server Data Tools, then I deployed it on my server in the SSISDB database. Then I created a job to execute periodically this package with SQL Server

  • Proper way to set up an InDesign document for performance?

    Hello there, I'm wondering if I am using the product wrong, because I am having a heck of a time with the performance of my documents grinding my computer to a halt. I'm starting a new project, it's a 92 page book. On each page will be one or two *hi

  • Planning  function

    Hi all, how can i automatically execute planning function when the layout is open. is it possible in IP.

  • SAP Script - Window and box

    Hello All I have done changes to include few(3) lines in a SAP Script window. Because of those 3 lines, contents that were printed earlier are not getting printed. The window is getting printed inside a box and it is defined as BOX FRAME 10 TW. Windo

  • Password protect photos

    Is there a way to protect selected photo files with a password?