Unzip oracle 8i personnal Edition or enterprise edition

I have downloaded the oracle 8i personnal édition or 8i Enterprise Edition on download site and I can't unzip the files.
Does it need a special unzip software ? ( I use winzip or powerArchiver )
It works well with the 9i Lite Edition.
Thanks.

Your download was probably aborted when it was partially complete, leaving you an invalid ZIP file. Did you check the file size that you downloaded against the file size specified on the download site?
Justin
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC

Similar Messages

  • How can I get oracle 9.2.0.7 Enterprise edition Database for Solaris?

    Hi, everybody,
    Reccently got involved in a project that require to setup Oracle 9.2.0.7 Enterprise edition Database for Solaris. However from oracle's download page, the only sun platform version for 9i is 9.2.0.1. so to get to 9.2.0.7, do i need to download upgrade patch somewhere? Did anyone go through similar setup before and could you share with me your advice?
    thanks in advance!
    -liang

    Oracle produces media distribution for major releases only, not for patched versions (there has been only a few exceptions). A major release can be determined out from the first three digits, 9.2.0.
    Available versions at otn and edelivery are just major versions, the requiered version 9.2.0.X.X is avalable only through patchsets.
    By the way only a patchset changes the last two digits, if you require a specific individual patch it doesn't change these last two digits and a specific installation procedure is provided.
    Last available patchset for 9iRel2 is 9.2.0.8.0
    ~ Madrid.

  • Oracle standard edition vs. enterprise edition

    Hi all
    Due to cost constraints, we have had to downgrade our 8i Database Enterprise Edition installation to Standard Edition.
    My question is: do we have to re-create our database under Standard Edition, to make it a 'Standard Edition' database, or can we just re-open our existing database (created under Enterprise Edition) with the Standard Edition?
    I installed 8i SE and opened our database but, of course, SELECT BANNER FROM V$VERSION suggests we're still running the EE.
    Are we breaking the terms of our licence by using this existing database?
    Very many thanks
    Andrew

    Hi!
    My impression is during the database creation time, Oracle incorporates in data dictionary the options available for each product edition in that time.
    Try to execute a specific operation that needs an E.E. license just like parallel query, advanced replication, and Partitioning.
    Execute this query:
    select * from v$option;
    And compare to the Database Feature and Option Availability ( notes available on metalink ):
    Differences Between Standard Edition and Enterprise Edition in 8i
    Note:112591.1
    Differences between Oracle 8.1.x Personal, Standard and Enterprise on NT/2000
    Note:70059.1
    As long as this is only my impression, try opening a SR to make it sure.
    HTH
    Best regards.
    RK

  • Installing Oracle 8i 8.1.6 Enterprise Edition, on RH 6.1

    I have just received my Oracle 8i release 2 8.1.6 CD and attempted an install, after first satisfying all prerequisites.
    When installing Oracle 8i 8.1.6 Enterprise Edition, all is OK until the "linking Secure
    Sockett Layer" phase, when a message box appears with the following: "Error in
    invoking target nnfgt.o of makefile
    /usr/opt/oracle/8i/8.1.6/network/lib/ins_net_client.mk". If this is ignored several
    more appear with diferent target names.
    Eventually the install completes, but when the Net8 Configuration Assistant runs it stops with the following error: "libcIntsh.so.8.0: Cannot open shared object file: No such file or directory (libnjni8.so). Error loading native
    library: libnjni8.so Java.lang.UnsatisfiedLinkError: JniGetOracleHome".
    I am using:
    JRE V1.1.6 V5
    Have also tried with the latest IBM JRE V1.1.8 for RH Linux.
    RH Linux V6.1.
    I had great hopes for 8.1.6 having spent weeks failing to get 8.1.5 to install.
    Come back NT all is forgiven!!

    Tried that, still no luck, same error.
    I installed the two kernal items listed in
    the rpm install screen from CD1:
    Kernel Headers
    Kernel Libraries
    or did you install the kernel source from
    CD2?
    Also did you set any additional path's?
    Many thanks
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by nnath1:
    OK!! It worked.
    My config
    816rel2 on RH6.1
    JRE install is not required as the 816rel2 installer installs it for you.
    To solve the "Error in invoking target nnfgt.o of makefile /usr/opt/oracle/8i/8.1.6/network/lib/ins_net_client.mk"
    I just had to install the Kernel headers and and development libraries. I cound not tell you exactly which ones as I went ahead and installed all the development libraries, kernel headers and development tools.
    All the best<HR></BLOCKQUOTE>
    null

  • Using php to connect to Oracle Database 11g Release 2 Enterprise Edition

    Greetings everyone!
    Please i dont know how to connect to Oracle Database 11g Release 2 Enterprise Edition with php even though i connected with php successfully with Oracle Database 11g Express Edition with the php code below. can someone help please...
    define('ORA_CON_UN', 'hr'); // User name
    define('ORA_CON_PW', 'Adlibs14$'); // Password
    define('ORA_CON_DB', '//localhost/XE'); // Connection identifier
    // use constants defined in anyco_cn.inc
    $conn = oci_pconnect(ORA_CON_UN, ORA_CON_PW, ORA_CON_DB);
    if (!$conn) {
    db_error(null, __FILE__, __LINE__);
    Edited by: user11273096 on Jul 14, 2011 3:41 PM

    Note that this forum is for XE Beta, not EE.
    Can you connect from some other client tool, such as sqlplus?
    There's a {forum:id=178} forum that may be more suitable, if basic connectivity outside php works (i.e. issue is only php specific).

  • Using php to connect to Oracle Database 11g Release 2 Enterprise Edition EE

    Greetings everyone!
    Please i dont know how to connect to Oracle Database 11g Release 2 Enterprise Edition with php even though i connected with php successfully with Oracle Database 11g Express Edition with the php code below. can someone help please...Note im referring to oracle EE not XE.
    define('ORA_CON_UN', 'hr'); // User name
    define('ORA_CON_PW', 'Adlibs14$'); // Password
    define('ORA_CON_DB', '//localhost/EE'); // Connection identifier
    // use constants defined in anyco_cn.inc
    $conn = oci_pconnect(ORA_CON_UN, ORA_CON_PW, ORA_CON_DB);
    if (!$conn) {
    db_error(null, __FILE__, __LINE__);
    Edited by: user11273096 on Jul 15, 2011 12:03 AM

    Find the hostname and service name of the database and use those values in the ORA_CON_DB constant.
    Use 'lsnrctl status' on the database host to find the service name.
    If you use a "tns" alias, you may need to create a tnsnames.ora file where PHP can access it.
    Set the environment variable TNS_ADMIN (on Linux) to the directory containing the file.
    See the section "Oracle Database Name Connection Identifiers" p 102 of the free book
    http://www.oracle.com/technetwork/topics/php/underground-php-oracle-manual-098250.html

  • ORACLE 8I: STANDBY DATABASE는 STANDARD와 ENTERPRISE EDITION에서 사용이 가능한가?

    제품 : ORACLE SERVER
    작성날짜 : 2004-08-31
    ORACLE 8I: STANDBY DATABASE는 STANDARD와 ENTERPRISE EDITION에서 사용이 가능한가?
    =====================================================================
    Problem Description
    원격의 Standby 데이터베이스 구성을 고려하지만, standby 사이트로
    고려하는 장비에는 Oracle8i Standard Edition이 동작을 하고 있는 반면
    primary 사이트에는 Oracle8i Enterprise Edition이 동작을 하고 있다.
    이러한 경우 다음의 질문을 하게 된다:
    Primary 사이트에서는 Oracle8i Enterprise Edition을 standby 사이트에서는
    Oracle8i Standard Edition을 사용하는 것은 가능한가?
    Oracle8i Standard Edition database가 Standby 모드로 동작을 하면서
    Oracle8i Enterprise Edition database의 log들을 유효하게 받아들일 수
    있는가?
    Solution Description:
    Basic Standby 데이터베이스 기능은 Oracle7,Release 7.3.x, Oracle8, 그리고
    Oracle8i Standard Edition에서 사용이 가능하다.
    Enterprise Edition과 Standard Edition 모두 Standby 데이터베이스 기능을
    사용하기 위하여 구성할 수 있다. 그렇지만, Non-managed Standby 환경에서
    Stabdby 데이터베이스에 적용하여 복구를 하기 위한 추가적인 작업이 필요하다.
    a) Standby 데이터베이스 상에서 수동 또는 스크립트에 의한 복구가 필요하다.
    b) 저장되어진 Redo Log들을 Standby 사이트로 옮기기 위한 방법이 필요하다.
    Explanation:
    ===========
    Standard edition에서 사용할 수 없는 Standby 데이터베이스 특징의 유일한 점은
    Log의 원격 이동 능력이다. 다시말하면, Oracle8i의 Log 원격 이동 기능은
    Enterprise Edition에만 있는 특징중의 하나이다. 이 이외의 Standby 데이터베이스
    특징들은 Oracle8i Standard Edition이나 Oracle8i Enterprise Editio 모두
    동일하다.
    자동 Log 이동은 Managed Standby 환경으로 Standby 데이터베이스를 운영하기
    위해서 필요하다.
    Reference Ducumment
    <Note:111678.1> Oracle8i: Is Standby Database Available For Standard And
    Enterprise Edition?

  • Difference between standard edition and enterprise edition?

    Is there any document describing the feature differences between Oracle 9i standard edition and enterprise edition?
    Specifically is Oracle Text bundled with the standard edition?
    Thanks a lot
    James

    Hi,
    Check this document:
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=112591.1
    Apart from the features that are present in E.E. and not in S.E., there is little difference (except the license price...).
    Note that some seperately purchased options are only available with E.E., not S.E. (e.g. Partitioning, Enterprise Manager Packs).
    MB

  • What is the difference between 9i standard edition and enterprise edition

    hi,
    who can tell me what is the difference between ora 9i standard edition and enterprise edition?? relevant http links are also appreciated. thank you!
    regards,
    iron teung.

    If your 'professor' really said that then I think you need to find a new college!I agree. 11g is a superset of 9i. In fact,you can tell 11g to run in 9i compatibility mode.
    >
    I firmly believe that you would do well starting with
    9i and then going through the new features with each
    release to 11g.Since 9i is officially about to start it's second year in 'Extended Support' (which, due to the surcharge in support fee, will likely see a drop-off in adoption) I would encourage anyone studying Oracle database to start with 10g.
    But the idea of starting at 9i is not bad.
    >
    'Client' is the software required to
    access/interact/maintain an Oracle database remotely
    from a client machine. Different features become
    available as you progress from Personal to Standard
    to Enterprise editions. They are cost related to
    whichever license you buy in a production environment.One point of confusion is that Personal Edition really is targeted for the Developer and therefore includes all capabilities, features and options of Enterprise Edition turned on and included in the license. (Except RAC and OEM packs) When I draw a picture, I put Personal Edition at the top as most capable.

  • Personal Edition and Enterprise Edition

    What's the difference between personal edition and enterprise Edition? Is there any limitation,especially connection limitation, for the personal edition?
    Of course, price is one of the differences :). But I'm wonderring the difference making the price difference :).
    Thanks

    The differences are explained in this white paper
    http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family_0104.pdf

  • Weblogic 10gR3 standard edition and enterprise edition

    Difference between weblogic 10gR3 standard edition and enterprise edition ??

    WebLogic Server software is the same in all of the various download distributions available that vary on platform and 32/64 bit architecture. However, which features are licensed for use vary by the edition customers license, which is covered here:
    http://download.oracle.com/docs/cd/E14571_01/doc.1111/e14860/products.htm#i1041725
    That link is for WLS 11g, but it applies generally to WLS 10.3.0 as well.

  • Question regarding Upgrading from Standard Edition to Enterprise Edition

    DB version:10gR2
    We want to upgrade from Standard Edition to Enterprise Edition.
    In the following documention
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/intro.htm#BABFBJCC
    It talks about
    Deinstall the Standard Edition server software.I don't understand what they mean by DeInstall the software.
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?
    Edited by: Citizen_2 on Apr 8, 2009 1:59 AM

    Citizen_2 wrote:
    DB version:10gR2
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?Yes, that means use OUI and deinstall the Standard Edition
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?Because next point says install Enterprise Edition. For first get rid of old one and then install the needed one. There is no such option as upgrade in this case.

  • Using BizTalk Enterprise Edition 2009/2013 with SQL Server Standard Edition vs Enterprise Edition

    Hi All,
     I would like to know what are the Drawbacks of using BizTalk Server Enterprise Edition 2009/2013 with SQL Server Standard Edition vs Enterprise Edition.
    We are currently using Enterprise Edition.
    1) Are there any adverse performance constraints? Microsoft mentions to use SQL Server Enterprise Edition for "Optimal Performance" but does not expand on the topic. 
    2) Any features missing?
    2) Is there a supported way to downgrade SQL Enterprise to Standard for an exisiting BTS Environment?
    Thanks!

    1) SQL Standard is limited to 4 CPU's and 64GB of memory while Enterprise is 8 CPU and 2TB or memory.
    2) The only BizTalk feature dependency on a SQL Enterprise feature is BAM Real-Time Aggrigations which requires Analysis Services RTA.
    3) Yes, but it's not a SQL downgrade really, you would move the BizTalk databases:
    http://msdn.microsoft.com/en-us/library/aa559835.aspx

  • SQL Server 2012 BUsiness Intelligence Edition vs EnterPrise Edition

    Hi All,
    We are deciding with versión of SQL Server 2012 to buy. Really there are no differences between Business Intelligence Edition and Enterprise Edition regarding all BI Stack????... I mean ( Integration Services, Reporting Services, Analysis Services, etc...)??
    Exactlyyy the same features?? Minumun differences let me know please...
    Thansk for all
    Carlos

    Nope. There are many difference. 
    Refer this link for more information
    http://msdn.microsoft.com/en-us/library/cc645993.aspx
    -Prashanth

  • Differences between Oracle Personal Edition and Enterprise Edition

    What are the differences between the databases of Oracle Personal Edition and the Oracle Enterprise Edition..?

    I have just looked at the metalink document and see that Oracle are still blatantly lying about the availability of analytical functions.
    We chose standard edition on the basis of this document and were very annoyed to find we could not use analytical functions.
    The document is about 8i. Of course we are all on 9i these days aren't we ?

Maybe you are looking for

  • Make a dashed line...

    How can i make a dashed line with the rectangle tool?

  • Where is my hard disk?

    I installed a second hard disk to use as a backup a couple of years ago and it has always worked perfectly. Now it doesn't show up. What can I do?

  • FTP-Operator in Workflow

    I want to use the ftp-operator in an OWB-Workflow. Thats why i use the OWB as the client to implement the workflow. I want to use a script, that is managed in the owb itself. I configure the ftp operator in this way: COMMAND: /usr/bin/ftp (i can star

  • Dual Computer / Intel-PowerPC Setup

    Hello all, I'm thinking of buying an Intel Mac, but I don't want to get rid of my PowerPC computer, because of all the old applications that aren't Intel compatible. My questions are: 1) How well do Intel Macs emulate with Rosetta (how much performan

  • Unable to reconnect to integrated messaging...

    My phone was disconnected yesterday. Ever since there has been a pop up that states "cannot send messages when browsing in offline mode." However I have been able to send and receive messages... when I attempt to reconnect a window pops up stating th