Join in oracle8i and oracle9i

hi all
i am using oracle8i.
SQL> select * from employee;
ID NAME
1 pavan
2 kiran
SQL> select * from salary;
ID SALARY
1 100
SQL> select employee.id,salary.id from employee,salary where employee.id=salary.id(+);
ID ID
1 1
2
Will the query which i have written in 8i equal to the following in 9i?
select employee.id,salary.id from outer salary,employee where employee.id=salary.id
and Does OUTER in 9i means Left if nothing is specified??
Any inputs will be really helpful
Thanks and Regards
Pavan

Pavan,
This question is most appropriate for a SQL forum. Please move your question there. Good luck!

Similar Messages

  • XA : Oracle8 and Oracle9

    I using Tuxedo8.0 ..and I need to use XA with both Oracle8 and Oracle9...
    This time is using only Oracle8, Two-Phase commit, and next year we have to join
    with Oracle9.
    Then I would like to know Can I use XA across Oracle8 and Oracle9...
    What is RM file for Oracle9?
    Regards,
    Yos

    Hello Yos,
    XA transactions can span multiple RDBMSes... There may be limitations/problems
    as every RDBMS has a different implementation and hence do not work the same way.
    The base rule is: You can definitely have a single XA transaction across Oracle,
    Informix and DB2. So, your scenario of XA transactions across Oracle 8 and 9 databases
    should work..
    For RM file entry, please refer Oracle/Tuxedo documentations. Oracle 8.x RM file
    entry may also work fine with Oracle 9.x. Just give it a try.
    HTH
    regards
    MS

  • Oracle8i and Oracle9i with BWLS5.1

    Hi, I need help!!!
    I ve a Oracle8i and an Oracle9i connection pools in WLS 5.1
    The Oracle9i connection pool is not stable, and have been told to upgrad the drivers for it. I wonder if there is any problem use connection pool to an Oracle8i and Oracle9i, without any conflicts.
    Can WLS5.1 handle it? how should I do ?
    Pleaaaase!
    regards / John Cokoulo

    Hi Sree,
    Sorry, I was wrong, I found the JDBC drivers for the Oracle9i.
    The JDBC pack contains the OCI and Thin drivers.
    Thanks alot.
    best regards, John.
    "John" <[email protected]> wrote:
    >
    Hi Sree,
    thanks alot for your help!
    I was looking for Oracle 9i Thin driver, but could not find any!
    The only I could find was Oracle 9i thin JDBC driver for Mac OS X.
    and thanks again for your help.
    regard, John!
    "Sree Bodapati" <[email protected]> wrote:
    Hi John,
    WebLogic jDriver for Oracle 9i is not available for WLS5.1. Its only
    available for WLS6.1SP2 and above.
    I suggest you use the Oracle thin driver from Oracle to connect to the
    9i
    database.
    when you download and install the 9i thin driver, the connection pool
    can be
    configured as,
    weblogic.jdbc.connectionPool.O9iPool=\
    url=jdbc:oracle:thin:@9imachinename:port:SID,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=5,\
    maxCapacity=12,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=12,\
    props=user=o9iusr;password=o9ipwd;weblogic.oci.min_bind_size=660
    You cannot use two different OCI drivers at the same time to create
    Connection pools in a single server.
    HTH
    sree
    "John" <[email protected]> wrote in message
    news:[email protected]...
    Hi Sree, thanks for your help... now this information is what I got.
    Some data:
    ORACLE_HOME=/oracle/product/8.1.7
    PATH includes $ORACLE_HOME/bin
    My ld library path include the oracle driver: oci815_8:$ and ORACLE_HOME/lib
    As I can see is the oci815_8 in use.
    weblogic.jdbc.connectionPool.O8iPool=\
    url=jdbc:weblogic:oracle,\
    driver=weblogic.jdbc.oci.Driver,\
    loginDelaySecs=1,\
    initialCapacity=5,\
    maxCapacity=12,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=12,\
    props=user=o8iusr;password=o8ipwd;server=O8iServer;weblogic.oci.min_bind_siz
    e=2000
    weblogic.jdbc.connectionPool.O9iPool=\
    url=jdbc:weblogic:oracle,\
    driver=weblogic.jdbc.oci.Driver,\
    loginDelaySecs=1,\
    initialCapacity=5,\
    maxCapacity=12,\
    capacityIncrement=2,\
    allowShrinking=true,\
    shrinkPeriodMins=15,\
    refreshMinutes=12,\
    props=user=o9iusr;password=o9ipwd;server=O9iServer;weblogic.oci.min_bind_siz
    e=660
    Now Can I Make Tow Connection Pools To Oracle With Different Drivers
    Like Let The O8i Go To The Old oci815_8 Drivers,
    And Install New Oci Drivers For The Oracle9i ??????
    "Sree Bodapati" <[email protected]> wrote:
    Can you post the connection pool properties url and driver, they should
    tell
    us what driver you may be using.
    sree
    "John" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I dont know exactly what driver we use, but I know that the same driver
    is
    in
    use for bothe 8i and 9i. And I know that the driver is old, (from 2000).
    The behavior is that connection duo the 9i are rollin back sometimes,
    about
    30%
    of all transactions are rolling back.
    Thats why I ve been told to use newer drivers (9i drivers).
    So, yes, I see exceptions, roll back exceptions of the transactionsthat
    are
    trying
    to connect to the database pool.
    But I wonder how to do that, and how can I see exactly what driver
    we
    use
    now?
    Please help me!!!!
    "Sree Bodapati" <[email protected]> wrote:
    John,
    What driver are you using to connect to 8i and 9i? What is the behavior
    you
    are seeing with the pool connections, when you say pool is not stable?
    do
    you see any exceptions/hangs ?
    Also ensure that you have testConnsOnReserve=true (on the 9i pool)
    so
    that
    the connections get recreated if they go bad.
    hth
    sree
    "John" <[email protected]> wrote in message
    news:[email protected]...
    Hi, I need help!!!
    I ve a Oracle8i and an Oracle9i connection pools in WLS 5.1
    The Oracle9i connection pool is not stable, and have been told to
    upgrad
    the
    drivers for it. I wonder if there is any problem use connection pool
    to an
    Oracle8i and Oracle9i, without any conflicts.
    Can WLS5.1 handle it? how should I do ?
    Pleaaaase!
    regards / John Cokoulo

  • Recover during systemcopy between Oracle8 and Oracle9

    Hello!
    This is my first question in a forum, therefore sorry for mistakes.
    We perform a systemcopy from Oracle8 to Oracle9. If we use a Offline-Backup there is no problem. After the restore we migrate the databse to Oracle9 and everything is ok
    Now we try to use a Online-Backup for this. The restore is no problem but the recovery of the database end with following error:
    alapaldsap1:oraal3 1> sqlplus /nolog
    SQL*Plus: Release 9.2.0.8.0 - Production on Mon Mar 17 10:01:48 2008
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    SQL> connect / as sysdba
    Connected.
    SQL> recover database until time '2008-03-11-04:00:00' using backup controlfile;
    ORA-00279: change 537397112 generated at 03/10/2008 21:01:12 needed for thread
    1
    ORA-00289: suggestion : /oracle/AL3/saparch/AL3arch1_89802.dbf
    ORA-00280: change 537397112 for thread 1 is in sequence #89802
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00279: change 537400510 generated at 03/10/2008 21:04:18 needed for thread
    1
    ORA-00289: suggestion : /oracle/AL3/saparch/AL3arch1_89803.dbf
    ORA-00280: change 537400510 for thread 1 is in sequence #89803
    ORA-00278: log file '/oracle/AL3/saparch/AL3arch1_89802.dbf' no longer needed
    for this recovery
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    ORA-00283: recovery session canceled due to errors
    ORA-00355: change numbers out of order
    ORA-00353: log corruption near block 2 change 537400510 time 03/10/2008
    21:04:22
    ORA-00334: archived log: '/oracle/AL3/saparch/AL3arch1_89803.dbf'
    ORA-01112: media recovery not started
    If we retry this recover then the archived log 8903 is ok, and archived log 8904 is corrupted.
    I don't think, that the Redologs are corrupt. Have anybode an idea, what should i do???
    Thomas

    Hello!
    I don't think so. Because i got this message for every log since 89797. Every try to recover the database i got this message for the next log.
    It is possible to recover a Oracle8-Databse to a Oracle9 Database during systemcopy?
    Thomas

  • Oracle8 and oracle9i on same server?

    Hello Ora-GURUs,
    I have Oracle8 Release 8.0.4.0.0 - Production database running on windows2000 server. I want to install Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production database on the same server. Is it possible to have both versions running on the same server? if yes then how (just brief)?
    Thanks in advance...

    A few concerns
    1) Oracle 8.0.4 was never supported on Windows 2000.
    2) Oracle 8.0.4 was not multi-home compatible, so there is no guarantee that installing a new database version won't affect your existing install.
    3) Oracle 8.0.4 was desupported about 6 and a half years ago and wasn't even the terminal patchset for the 8.0.x line. Why are you using such an ancient version of the database?
    I would be grateful that a production database was even running on an operating system it was never designed for or tested on and wouldn't attempt to install anything else. I would seriously investigate ways to upgrade the 8.0.4 database at least to 8.0.6 but realistically to something that is still supported like 9.2 or even 10.2.
    Justin

  • OO4O - Oracle8i vs Oracle9i

    Can the latest version of OO4O be used for both Oracle8i and Oracle9i?
    Thanks

    Hi
    Reports is good for standard reports which are used often (daily or weekly) and 'never' change.
    Disco good for ad-hoc reporting, analyzing.
    See the documentation in OTN.
    Ott Karesz
    http://www.trendo-kft.hu

  • Connecting Oracle7 and Oracle9 simultaneously in perl

    Hi all. sorry for my english. I just started using perl, so I am not very experienced.
    I need to access an Oracle v7.x.x on Linux-box and Oracle v9.2.x on another one in the same script. I know that i need to install DBD-Oracle, but for which database version?
    What environement varibles should be set to access to oracle7 and oracle9?
    Is it possible at all to access two oracle databeses at the same time? Thanks in advance

    You only needed to do this if you wanted to plug in a computer to the ethernet port of the airport express "Bedroom", or to have two differently named Wireless networks.
    WDS retransmits data, and thus in some situations may impact network performance in a negative fashion. The more conventional way I would suggest, assuming you're not using the ethernet port on the "Bedroom" AX, is to create a network with the TV room one, called "House" or something, then configure your laptop and the Bedroom airport express to join the "House" network. You would be able to see both sets of speakers that way, without relying on WDS.
    But in the end, if it works for you, that's all good too

  • I bought yesterday my macbook pro and I want to join the FaceTime and I just can´t... It said that is not working and try it later... but since yesterday said that .. What should I do?

    I bought yesterday my macbook pro and I want to join the FaceTime and I just can´t... It said that is not working and try it later... but since yesterday said that .. What should I do?

    Here's a previous discussions that seems to have solved a similar issue in the past:
    https://discussions.apple.com/message/12209861#12209861

  • Where is iTunes Match content stored on apple TV? I recently joined itunes match and it is working on my ios devices, but I can't find my music on Apple TV

    Where is iTunes Match content stored on apple TV? I recently joined itunes match and it is working on my ios devices, but I can't find my uploaded music on Apple TV

    It isn't actually stored anywhere, it needs to be downloaded from the internet before any content can be played.
    iTunes Match content is accessed through the 'Music' icon on the main screen though, it needs turning on though in settings first.

  • How to stop the services provided by net80 and oracle9i

    how to stop the services provided by net80 and oracle9i during the installation of forms6i & reports6i in windows 2003 server

    Go into the control panel and choose services ... stop the services.

  • Difference between Oracle9i 9.2.0.3 and Oracle9i 9.2.0.4 JDBC Drivers

    Hi everybody,
    Can you tell me what is Difference between Oracle9i 9.2.0.3 and Oracle9i 9.2.0.4 JDBC Drivers briefly?
    In my application I am using Oracle9i 9.2.0.3 JDBC Drivers. But it is not supported when I retrieved Data with junk character from CLOB.because of IO Exception it showing Bigger type length than Maximum
    if i used Oracle9i 9.2.0.4 JDBC Drivers it is working properly.
    I am using WAS 4.0.3 , JDK1.3 and Oracle 9.0.
    Shall I use Oracle9i 9.2.0.4 in my application and I want to know it will create any new problem in my application or not ?
    please Reply me ASAP.
    i am waiting for your reply
    thanks a lot
    bye
    Message was edited by:
    paulusazapakcom

    Can you tell me what is Difference between Oracle9i
    9.2.0.3 and Oracle9i 9.2.0.4 JDBC Drivers briefly?Search the Oracle site. That should tell if there are any differences at all. I would assume that there would be some bug fixes.
    please Reply me ASAP.
    i am waiting for your replySuch lines are better avoided.

  • Urgent - How to join multiple facts and dimensions in OBIEE rpd??

    Hi,
    In my RPD I have 3 facts and 4 dimensions and the joins defined are as below
    Physical layer - All joins are FK and inner (1:N)
    FACTA-------------- DIM_TIME, DIM_CUST,DIM_CAL
    FACTB-------------- DIM_TIME, DIM_CUST,DIM_CAL
    FACTC-------------- DIM_TIME, DIM_CUST,DIM_CAL, DIM_XYZ
    BM layer - All joins are complex, inner
    The logical table F1 pulls columns from FACTA, FACTB and FACTC . Complex join exists between all 4 dimensions DIM_TIME, DIM_CUST,DIM_CAL, DIM_XYZ to logical table F1.
    Issue: I need to build a report with $ column from FACTA, FACTB and FACTC and need to add filter conditions using columns from DIM_TIME, DIM_CUST,DIM_CAL, DIM_XYZ.
    However when ever I add a filter condition from DIM_XYZ the physical query generated is not generating code to access data from FACTA and FACTB. Instead it is subsituting a NULL and just pulls data frm FACTC.
    My Questions: What is the best way to build the physical and BMM layer using FACTA, FACTB,FACTC, DIM_TIME, DIM_CUST,DIM_CAL and DIM_XYZ??
    I need to resolve this issue ASAP so any help is appreciated. Thanks
    Edited by: user11935561 on Feb 10, 2010 6:27 AM
    Edited by: user11935561 on Feb 10, 2010 6:28 AM

    You can find the same issue in
    Logic of queries in OBIEE
    or
    Connection between 2 fact tables
    Follow the link
    http://there-n-back-again.blogspot.com/2009/04/oracle-analytics-how-to-report-over-non.html
    Put 'All' or 'Total' at levels for dim_xxx for those facts you need in your report from facta and factb
    Regards
    Nicolae

  • Joining DB VIEW and Command result in cartesian product

    hello,
    My SQL query is joining a DB view and a Command(=ad hoc query).
    Nonetheless from the results it appears that CR didn't join the views correctly, it returns a cartesian product.
    Any idea what the issue could be, I'm using very simple queries.
    Thanks in advance

    #1  make sure you are linking everything together properly in the "Links" tab of the Database Expert
    #2  In my experience, it's just a bad idea to join SQL commands and other tables.  I had poor performance issues in my case.  (It prevents server side filtering and grouping)  My suggestion is to write out the entire thing in the command.  If you are pulling from multiple database, write a separate command for each database and link them.

  • Difference between Oracle9i Standard Edition and Oracle9i Enterprise Editio

    Hi,
    Can someone please tell me what is the difference between the Oracle9i Standard Edition and Oracle9i Enterprise Edition.
    Regards

    First, if you want Enterprise Options like Partitioning, you need to have Oracle Enterprise Editions. Note that partitioning is not included in an Enterprise Edition license ! You have to buy the option separatly (+25% of price).
    A good reason to use EE is the ability to scale to more than 4 cpus...
    Note that on some systems like Solaris 10, you can use SE with a multi-cpu machine, you just need to create projects and allocate at most 4 cpus for the oracle user.
    Check with your sales representative for some coefficients per core depending on your architecture .
    Message was edited by:
    Laurent Schneider

  • TS3991 I organazied my contacts by the address of my tenants. I just joined to Icloud and I am not able to find my tenants in the directory in the computer at all. I could search when I am using my phone but they do not show at first.how can correct this?

    I am a landlord and I organazied my contacts by the address of my tenants. I just joined to Icloud and I am not able to find my tenants in the directory in the computer at all. I could search when I am using my phone but they do not show at first.how can correct this? as an example 37 31 1 and when i type this nothing is showing.

    I am a landlord and I organazied my contacts by the address of my tenants. I just joined to Icloud and I am not able to find my tenants in the directory in the computer at all. I could search when I am using my phone but they do not show at first.how can correct this? as an example 37 31 1 and when i type this nothing is showing.

Maybe you are looking for