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.

Similar Messages

  • 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.

  • Question about installer Os 9

    Hello !
    Yes i know : "* Search or browse for existing answers before you ask a question. Someone else may have asked your question Ñ it may save you some time."
    But who can browse all topics?! The hundered names of the threads tells me as beginner in OS nothing. Sorry! Unfortunately I dont have a Users guide for the computer.
    Please help me with an answer or a link.
    I am trying to connect my PC to Internet. I don't know haw to install the Ethernet driver (DFE-528TX). When I double clik on the Installer icon appears on my screen a blank "installer" window. I can write in this window but can not save becose the file (what file?) is read only.
    U can tell me I'm stupid but please give me a hand
    Thanks !

    Hello deaecrim,
    First....congratulations...job well done. I am sorry I didn't see any response to the post and thought you may have takena break.
    Q: Is Apple Talk the name of an application or the name of the menu on the Top left on the Display ?
    Complicated answer. First the apple in the upper left conner has a list of items below it. These items are referred to as "Apple Menu Items"
    There are about 18 items and more can be added. Many people use these items as a shortcut to work. Often people use recent documents to get to a document they used recently. Another folder under the apple is called "control panels" This is very important and you will learn to use several including extension manager. But I would go slowly. I would not experiment yet. Get things going well first.
    Apple Talk is by definition: - It is method used by apple computers to communicte. The info in blue is pretty technical
    Apple Computer developed the AppleTalk protocol suite to implement file transfer, printer sharing, and mail service among Apple systems using the LocalTalk interface built into Apple hardware. AppleTalk ports to other network media such as Ethernet by the use of LocalTalk to Ethernet bridges or by Ethernet add-in boards for Apple machines.
    AppleTalk is a multi-layered protocol providing internetwork routing, transaction and data stream service, naming service, and comprehensive file and print sharing. In addition, many third-party applications exist for the AppleTalk protocols.
    To extend the addressing capability of AppleTalk networks and provide compliance with the IEEE 802 standard, Apple Computer introduced AppleTalk Phase 2 in 1989. AppleTalk Phase 2 differs primarily in the range of available network layer addresses and the use of the IEEE 802.2 Logical Link Control (LLC) protocol at the Data Link Layer.
    from http://www.protocols.com/pbook/appletalk.htm
    I downloaded OS 9.2.2, I have it on a memory stick.
    Great.....No problems....Just click on the updater and it will update you to 9.2 This is far more stable. You should have no trouble at all. It is a very simple process. Just click on the installer and it will drop the updates to your system.
    As far as a browser.
    There are several that will work and are available for free. They include Netscape...I think you can go to 7 but I am sure version 6 works. Mozilla, Explorer.
    I must run to pick up my son from college. It is almost midnite so I may not be able to post till tommorrow. I will send a link to several browsers.
    Just go slow and don't get confused with terms like Apple Talk etc. All this will come in time. I wish you could get apple help as it really works great. I will see if I can figure a way to get you that. Take Care...Congratulations.........Jim

  • 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

  • Tech question about installation, cabling, speed, ...

    The gentleman who owns the company I work for has a home office with regular ADSL. He only gets about 2Mb from this line and would like it faster if possible.
    I went on the BT checker page and it said Infinity was available and he could get 30Mb download speed. Please can someone tell me what end to end this check is conducted over? Does the test go all the way to the master socket in the house or does it just test between the 'exchange' and the BT box at the end of the street?
    The reason I ask is that he has 50-100m of old overhead cable going in to his property (big drive/garden) and this is the main reason he has always cited for the slow bandwidth issue on ADSL as neighbours who live closer to the BT box fair much better for ADSL speeds and a neighbour who recently had a new long overhead cable installed also did much better.
    I am concerned that if I order this product for him the speeds will be far lower than those promised because of the poor quality cables between his house and the BT box.
    Please can someone advise?
    Many thanks in advance. 

    mjwilde wrote:
    Thanks for your responses guys.
    Infinitechris: the lady in the BT call centre I spoke to told me that it was the specific line in question that had been tested, although when I pressed her on the details of this (i.e. was it tested to the BT box or to the master socket in the house) she first said one, then later said the other. When I kept asking about this, she just kept telling me I didn't get it as it was fibre optic broadband. When I said the last 100m was an overhead cable and most definitely not fibre optic, she insisted that the line had been tested and the speeds she told me were the speeds I would get.
    PLC: His actual usage will be quite low - just a few GB per month but what he wants is for things to happen quickly when he is online.
    If you are just talking emails /web browsing, then he is hardly going to notice a speed improvement.
    If you are talking Downloading large files/ streaming/ youtube, Iplayer etc then yes you will notice the difference
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • Question about Installation Disk

    This is a stupid question but can I use my installation disks that came with my macbook (tiger) and use it on my powerbook G4 (panther) to upgrade my Powerbook to tiger osx?
    Feel free to mock me.

    No, installation disks are specific to a particular model of Mac (aside from the fact that you wouldn't be able to use Intel install disks on a Power PC Mac). You would probably see a message something like "This version of OS X cannot be installed on this system".
    Matt

  • 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

  • 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 installation?

    I am a student and I am using the suns java compiler, but our teacher wants us to use j++ for certain things, my question is can I have both running in my computer or at my going to run into some trouble. I really don't have alot of experince so can someone help me.

    Tell your teacher J++ isn't 100% Java-compliant and you'd prefer to use something that was. Options include the JDK, JBuilder, Visual Studio, and several other products.
    You can probably have both on your system. I run JBuilder and the JDK on the same system. JBuilder puts its own copy of the JDK on the system, but allows you to point to/use any javac that can be found on the system.

  • About Installation Oracle 11

    Please could you help me ?
    My problem i have tried to install oracle 11 in my computer but it fail.
    I have win 7 with 64bits on my laptop.
    i just downloaded the software oracle . but i have a big problem Help please. Because i m following a course that means i really need the software.lease i m waiting for your Support.

    854319 wrote:
    Please could you help me ?
    My problem i have tried to install oracle 11 in my computer but it fail.
    I have win 7 with 64bits on my laptop.
    i just downloaded the software oracle . but i have a big problem Help please. Because i m following a course that means i really need the software.lease i m waiting for your Support.I have a car in my driveway. I tried to start but it failed. Can you help me?
    In other words, some diagnostic information in the form of logs and/or error messages would be essential to providing any help.
    Please note that NO oracle product is certified on on ANY "home" edition of any Windows OS.

  • Newbie question about installation

    Hello:
     I am arming my first computer, and yesterday i bought the motherboard MSI 865 PE neo2 Fisr,along with the case.
    My question is:  can be installed the motherboard directly to the case. Without special screws that separate them.
    ¿Screwing the card directly to the case?.
    Because when i tried install the mother board with the spacer, it couldn´t  align with the case.
    I really apreciate your help!!!!
    thank you!!!!
    Ps: sorry for my sintaxis.

    No you can't fasten directly to the case. That will cause a short circuit and you may destroy a lot of your hardware. If the standoffs don't line up, check that you are using the correct holes. Not all holes are for standoffs.

  • 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.

  • Some basic question about SCM Installation

    Hi Folks,
    Could you please advice me about some basic questions about SCM and its installation -
    Q1. Do I need to have an R/3 System to be able to practice OR demo the SCM system?
    Q2. If, yes, which version of SCM is compatible with the ECC 5.0?
    Q3. What are the basic requirements to install SCM (version compatible with ECC 5.0) and ECC on a oracle db and windows OS?
    Q4. Does SCM have APO and BI as an inbuilt functionality OR does the user need to purchase these as an Add-On?
    I know these are some basic questions, but these will help me give me a direction.
    With best wishes,
    Krishna

    Hello Krishna -
    Q1. Do I need to have an R/3 System to be able to practice OR demo the SCM system?
    ---> There are various Modules in SCM Like APO (Sub Modules  DP (stand alone), SNP Needs Master data from R/3 and has to pass on transactional Data to R/3, PPDS same as SNP, GATP same as SNP), ICH needs Data from R/3 to work with. Core Interface (CIF) connects R/3 to APO for transferring data.
    Q2. If, yes, which version of SCM is compatible with the ECC 5.0?
    -->For thorough understanding explore the following links
    http://help.sap.com/saphelp_scm41/helpdata/en/9b/954d3baf755b67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_scm50/helpdata/en/9b/954d3baf755b67e10000000a114084/frameset.htm
    Q3. What are the basic requirements to install SCM (version compatible with ECC 5.0) and ECC on a oracle db and windows OS?
    -->Refer Above
    Q4. Does SCM have APO and BI as an inbuilt functionality OR does the user need to purchase these as an Add-On?
    --> APO comes with a small BI inbuilt functionality. you can only perform certain functions using that BI.
    Hope this helps.
    Regards,
    Suresh Garg

Maybe you are looking for

  • Query spatial data out of PLSQL Developer

    I tried to select all columns (on of them SdoGeom type) of a table using PLSQL Developer and got the message "unconsistent datatypes". When I use a the same select statement in SQL*Plus anything works right. What is there to do to use Developer?

  • Transferring Business Content DataSources  IN BW

    Now, i'm practicing transfering bc datasource following best practice,  but i encount some problems . 1.   the system prompt me that "Request TRNK900700   (IDADMIN) belongs to a different client"  when i transfer datasource 2LIS_11_VAITM.  i never cr

  • Performance Oracle for Linux OS/390

    Hi all, somebody know some issues in Oracle for Linux OS/390..? instalation, performance, etc. Thanks and advanced. Best regards....

  • Downloading error code : 201

    Downloading free trial of Premiere Pro Problem downloading process. Error 201 Not sure what this means?

  • BADI : ME_PROCESS_PO_CUST Probelm

    I am using BADI ME_PROCESS_PO_CUST and want to throw error if any Z condition is not maintained , it is throwing error but also it is then existing from the transaction , showing error message , System Error ( Error in Method PO_POST ) Can we send er