Doc on comparing different releases of oracle reqd.

Hi,
If anybody have a document on comparing different releases of Oracle database say 7.x,8,8i,9i & 10g, can you please send it to me?..I mean the content should be like what is improved and/or added from 7.3 to 8 , 8 to 8i, 8i to 9i and 9i to 10g releases..i
Thanks & Rgds.,
-Hari.

Hi,<br>
<br>
You can read new features doc, like Oracle9i Database New Features Release 2 (9.2), you can find all these doc at http://tahiti.oracle.com<br>
<br>
Nicolas.

Similar Messages

  • Different releases of oracle 10g and 9i

    Hi,
    what is the difference between oracle 10g release 1 (10.1 ) and 10g release 2 (10.2)? : difference in instalaion steps only ,will be fine
    i need to install silently both the releases in AIX 6.1....
    Also please tell me the same for different releases of oracle 9i.

    Your answers are just a few clicks beyond the URL below.
    http://tahiti.oracle.com
    Installation Guide is available for each release down 1 click from URL above
    Enjoy!

  • How to know the database changes between different releases

    Where can I get the information of database changes, like for example new columns new tables, etc, between different releases?
    My goal to try to determine the current version, or is there a better way?
    Thank you

    For JD Edwards World or for JD Edwards EnterpriseOne - you can go to upgradejde.com Once this screen comes up, pick Resources. You will then have an option to take JD Edwards EnterpriseOne or JD Edwards World. On the next screen, you can select the tab Compare Releases. This will allow you to enter the release that you are currently on and enter the latest GA release of software. You will then see all the differences between your current release and the release you should upgrade to. You can also format this into a printed report.

  • What is the meaning of different fields of Oracle Software e.g 11.1.0.2.0

    What is the meaning of different fields of Oracle Software e.g 11.1.0.2.0
    Please share.

    The first digit is the most general identifier. It represents a major new version of the software that contains significant new functionality.
    Database Maintenance Release Number
    The second digit represents a maintenance release level. Some new features may also be included.
    Application Server Release Number
    The third digit reflects the release level of the Oracle Application Server (OracleAS).
    Component-Specific Release Number
    The fourth digit identifies a release level specific to a component. Different components can have different numbers in this position depending upon, for example, component patch sets or interim releases.
    Platform-Specific Release Number
    The fifth digit identifies a platform-specific release. Usually this is a patch set. When different platforms require the equivalent patch set, this digit will be the same across the affected platforms.Check
    Meaning of each number in version

  • Can I have primary and standby in same OS but different releases.

    All,
    Can I have primary and standby DBs in same OS but in different releases?
    i.e. primary is in RHEL 5 and standby is in RHEL 4, is it ok to setup or do we see any issues?
    Thanks,
    Mahi

    In 10g, dataguard started to support different binaries on primary and standby database servers with the same OS family. For example Microsoft Windows 64-bit on primary and Microsoft Windows 32-bit or Microsoft Windows 64-bit for AMD on standby database server. However with 11g, dataguard also supports different OS on primary and standby servers
    Role Transitions for Data Guard Configurations Using Mixed Oracle Binaries [ID 414043.1]
    Data Guard Support for Heterogeneous Primary and Physical Standbys in Same Data Guard Configuration [ID 413484.1]

  • Next release of Oracle VM Manager?

    Is there an ETA on when the next version of the Oracle VM Manager will be released?
    There seem to be a few issues with the manager that really need to be addressed
    - specifically the disconnect between the manager and the underlying xm/virsh tools
    - increased support of available vm.cfg directives
    Also, is there a list somewhere of the features that will exist in the next version?

    Still you may refer this link. The documents have been already updated. and some upgrade process are interpreted.
    http://download.oracle.com/docs/cd/E11081_01/welcome.html
    Oracle VM Server upgrade:
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10899/e10899_02.htm#CIHBCHII
    Oracle VM Manager upgrade:
    http://download.oracle.com/docs/cd/E11081_01/doc/doc.21/e10902/e10902_02.htm#BHCDJGJJ

  • Billing doc splitting to different cocodes

    hi gurus,
    my client needs billing doc splitting to different cocodes  with different revenue G/L accounts  with common customer.  He needs from billing doc flow ?how can we solve this? any inputs on invoice splitting highly appreciated.
    thanks in advance.
    regds,
    ram

    Hi,
    I am facing a similar issue. Please let me know a s how you proceeded in clearing the "SPLIT DUE TO PARTNER DATA".
    Thanks in Advance.
    Regards,
    Rajesh

  • Error while inserting .doc file into CLOB object in oracle

    hello everybody ,
    i am trying to insert .doc file into clob column in oracle database.i am using oracle 8i. But i am getting error saying
    ORA-01461: can bind a LONG value only for insert into a LONG column
    i have no clue.
    i am pasting code here
    please help me out.
    regards
    darshan
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileReader;
    import java.io.Reader;
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    public class InsertingClob {
    public static void main(String[] args) {
    File f = new File("E:\\dar
    sowres.doc");
    int len = (int) f.length();
    System.out.println(len);
    Connection conn = null;
    PreparedStatement ps = null;
    try {
    FileReader fr = new FileReader(f);
    String FILE_INSERT_QUERY = "INSERT INTO RESUMED VALUES(?,?)";
    conn = JDBCUtility.getConnection();
    ps = conn.prepareStatement(FILE_INSERT_QUERY);
    ps.setString(1,"1");
    ps.setCharacterStream(2,fr,len);
    int result = ps.executeUpdate();
    if(result ==1) {
    System.out.println("file has been successfully inserted into the db");;
    }else {
    System.out.println("not inserted");
    }catch (Exception e) {
    e.printStackTrace();
    and the error is
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
    at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:582)
    at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1986)
    at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1144)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2152)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:2035)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2876)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:609)
    at InsertBlob.main(InsertBlob.java:21)
    java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column

    You may have one of a few errors going for you there:
    The error says your column in Oracle is a Long not a CLOB, if it is, then make your column a CLOB.
    CLOB's are not suppored in all environments and/or all interfaces (specifically Windoz ODBC has a problem).
    I believe a DOC (Windoz MS-Word) file is a BLOB, due to formatting characters in the file.
    I had a very similar error using Access and trying to do this, but changing to SAS fixed the problem. It could very well be that your version of ODBC/JDBC drivers does not support it properly.

  • Compare two schemas in oracle 11g

    Hi All,
    Can any one please help me how to compare two schemas in oracle 11g.
    Thanks
    Edited by: 793914 on Oct 22, 2010 9:33 AM

    You can do it with gridcontrol. Look for dictionary comparisons and dictionary baselines.
    If you don't have gridcontrol, you can also use SQLDeveloper (free download on otn).
    There are two ways to do it with SQLDeveloper.
    1) Use Tools->Database Diff. However, you need a change management license to use this functionality. I've never used this.
    The free way is to...
    2) Use Tools->Database Export. Run it once for each schema and make sure the "Show Schema" option is NOT checked before exporting the schema. Also make sure you don't export data. You can choose which types of objects to export as well.
    Once you have the two export files for the two schemas then simply run a diff tool on your platform. Use the diff command line for linux or winDiff or something similar in windows.

  • Using once created prepared statement with different connections in Oracle

    Can I use same statement cash using different connections in Oracle
    For example I have a prepared statement p1. After its using i close connection (return it to the pool)
    Next time I want use p1 statement using another connection.
    Question : When I creat p1 in second time ,is it returned from cash or created as a new statement. And what I should do to use once prepared statement using differend connections.
    Thaks.

    As far as I know a PreparedStatement lives and dies with the Connection that created it. So, you cannot use a PreparedStatement with other Connection instances than the one that created it.
    You will have to recreate the PreparedStatement for each time you open a connection, or use the same PreparedStatement and NOT close the Connection in between. The last suggestion can be risky though, if you never close the connection...
    Jakob Jenkov
    www.jenkov.com

  • Using 2 different databases in Oracle 9i with HTML DB

    I'm new to appex and I am wondering if I can use it to use data from different databases within Oracle 9i, and if so, how/where can I find out to do it. Basically I have an already existing database in 9i, and I have to create another one that uses information from one table in that original database. I have to somehow link it to the new tables (to use the live data from the original db) to filter data. Then ultimately make use of the collaborated information with HTML DB. Any and all help/suggestions is more than greatly appreciated.
    Thanks!

    I'm new to appex and I am wondering if I can use it to use data from different databases within Oracle 9i, and if so, how/where can I find out to do it. Basically I have an already existing database in 9i, and I have to create another one that uses information from one table in that original database. I have to somehow link it to the new tables (to use the live data from the original db) to filter data. Then ultimately make use of the collaborated information with HTML DB. Any and all help/suggestions is more than greatly appreciated.
    Thanks!

  • Perform Client import/export SCC8 with different release component between server

    Dear All
    Isn't possible to perform Client import/export SCC8 with different release component between server.?
    Currently the condition of between two system as follows
    Source Server     : SAP ECC6.0, Component SAP_APPL, release 602 level 16
    Target Server     : SAP ECC6.0, Component SAP_APPL, release 600 level 24.
    This problem happens due we was unable to downgrade the release and patch the latest support pack of SAP_APPL reelease 600.
    Thank You, your help is much appreciated.

    No..

  • Different Class for Different Release Group

    Dear All,
    I want to use different release class for a new group i am creating for Purchase Order Release.
    But it is not allowing me to save the same as the explanation given the overall release should not be there in one of the group created, but i am not able to find the overall release column while creating new release group.
    please help
    regards,
    Darshan

    Hi Darshan
    Can you please guide me ..
    I am facing the same problem assigning new class to new PO rel. Grp. and does not let me save...
    wht must have gone wrong...
    FYI: I am using sharing the charatersitics in both classes.
    Thanks
    Hiren

  • Comparing different date characteristics

    Hi All,
    I have a report where I want the date running down the left and comparing different keyfigures across the top.
    For Example:
    I want to see days running down and value for Order Qty, Expect Delivery Qty and Actual Delivery Qty on each line for the relevant date.
    The data for Order, Expected Delivery and Actual Delivery are all in different InfoCubes and joined by Mulitprovider.
    The issue is that the dates in each cube are in a different characteristic field, so how do I align them within the report?
    Order Cube
    -OrderDate
    -OrderQty
    Expected Cube
    -AvailableDate
    -ExpectDelQty
    Actual Cube
    -CalDate
    -ActualQty
    Please let me know how to show these different keyfigures all relative to a single date.
    Thanks,
    Terrence

    when you provide the assignments for characteristics in multiprovider ,assign all the three together in one characterisctic.
    Go to change mode of the multiprovider :
    select Order Date click on identify/assign
    In that tick on OrderDate from Order Cube .
    Available Date from Expected Cube
    and CalDate from Actual cube
    in the same assignment.
    Use Order Date in the report .
    Check whether this suffices your requirement

  • Compare different versions of a workflow template

    Hi,
    How can we compare workflow templates? We need to compare the different
    versions available in our Quality and development systems for any kind of
    changes -
    1. new steps added
    2. steps deleted
    3. other changes related to binding, events etc..
    What is best way to compare different versions of a workflow template??
    regards,
    revoori

    Try from t-code..
    PFTC..

Maybe you are looking for