Which Oracle version for analytic sql?

Can anyone tell me from which Oracle version on there exists the "analytic sql"?
Thanks!

Hi,
Mark1970 wrote:
Can anyone tell me from which Oracle version on there exists the "analytic sql"?
Thanks!Analytic functions (that is, functions using the OVER keyword, such as
RANK () OVER (ORDER BY hiredate)) were introduced in Oracle 8.1
(It's no coincidence that in-line views were introduced around the same time, since so many uses of anaytic functions require sub-queries.
In-line views were first documented in Oracle 8.1, but they worked in Oracle 8.0.)

Similar Messages

  • Which Oracle version required for MDM 5.5 SP05

    Hi guys,
         I do have MDM 5.5 SP05 but which Oracle version is required or which is strongly recommended by SAP.
    I am having Oracle 10g will that work efficently or let me know if any other version is needed or any other patch is needed with this version.
    Please do suggest...............

    hi Tejas,
    have a look at "oracle DBMS" section
    of this doc:
    https://websmp209.sap-ag.de/~sapidb/011000358700000271882007E
    it mentiones that there are some problems with 9.2
    but 10g should be ok (from this doc)
    <b>for recommended parameters on oracle 10g have a look at
    SAP note : 830576 </b>
    is that what you're looking for?
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Which Oracle Version to D/L?

    I am so frustrated.
    I don't know which oracle version to download.
    I have oracle enterprise 9i, but it doesn't have formsbuilder, jdeveloper, query builder etc...
    a frienf of mine recently d/l oracle9i, I don't know which ver, but he said it came with
    all of the above.
    My problem is this, I could go and download all of the above seperately..but do you how much
    Gigs, that's gigabytes of HDD space this will take up?
    Right now oracle is consuming a whopping 2 gigs+ of HDD space.
    If I download the collaboration suite, it's another Gig for d/l and who knows how big after decompression.
    I feel strongly about now wasting another full 2 gigs of space...
    my aquantence, rather, not really a friend, his oracle installation is only taking up 1.8+ gigs of space.
    Why the drastic Difference?
    I am wondering if anyone here knows of a decent d/l that contains all of the oracle software:
    SQl*Plus, Form Builder, Query Builder, Jdeveloper etc... in one single package?
    thank you for your time.

    This is not a FAQ. Please do not use the FAQ type unless you are posting the answer to a commonly asked question.
    Forms, Reports, etc comes in the Oracle 9i Developer Suite. This is available for download from OTN. Follow Downloads > Developer Suite. They are separate downloads because they are aimed at different communities. Many people who want the database - DBAs, PL/SQL app programmers - have no interest in Forms, etc. Conversely many pople who want the development tools don't want to install a database on their desktop.
    I don't know how big the 9iDS zip is, but the total installation eats up about 1.9 gigabytes. This is a corollary of Parkinson's Law: software expands to fill the hard disk storage available.
    Cheers, APC

  • Which Oracle version can i install on Windows 7 home premium edition?

    Hi,
    Can anyone please let me know Which Oracle version can i install on Windows 7 64 bit home premium edition?
    Thanks in Advance,
    Arun Kumar.
    Edited by: 884258 on Sep 9, 2011 6:21 AM

    Oracle database compatible for windows 7
    Already asked and answered in these forums - pl use the search feature
    HTH
    Srini

  • SpeechMining and SpeechIndexing, which Oracle Version ??

    Hi ,
    I tried to install the option Speech Mining.
    I can not Create or replace an existing Type example. ORDAudio. So how can I install this Package.
    If I drop and recreate the Type something missing to create an Index and in Ordplugins near everthing is Invalid .:-(((
    I tried it whith 9.2 on w2k
    So my question is : Does This Option Work ??? under which Oracle Version ??? Which Patch ???...........
    Thanx

    This option is for partners with speach recognition engines that want to integrate with InterMedia. Oracle does not provide speach recognition capabilities.
    Please contact the product manager [email protected] . He will be able to arrange for help with your issue when we understand your application.
    Larry

  • Trying to find the correct Oracle version for SCO Unix 5.06

    Please I will appreciate you can help me indicating where can I download the correct Oracle version for SCO Unix 5.06. I have downloaded the Tru64 Compaq version but it is not working with SCO.
    Best regards
    Armando Delgado
    00511 8105860
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name
    - Filename
    - Date/Time
    - Browser + Version
    - O/S + Version
    - Error Msg

    This is pretty old. From the certify matrix, you can see the last available versions this platform supported were 9.0.1 and 8.1.7, just for the Intel SCO Open UNIX 8 with LKP. SCO 5.0 last time I used it was with an Oracle7.3 release. In case you don't have software it'll be hard to find, unless you address this to your Oracle Representative.
    Are you absolutely required to run on this version? Otherwise, you could try new software and new oracle releases, unless you want to run unsupported.
    ~ Madrid.

  • An issue for analytical sql?

    Hi all,
    I am on the OracleXE 11gR2 and have the following requirements for the output of the select statement:
    Tables:
    GARAGE
    ======
    ID GARAGE_NAME
      1    GARAGE_1
      2    GARAGE_2
    PERSONS
    =======
    ID GARAGE_ID NAME
      1         1 NAME1_1
      2         1 NAME1_2
      3         1 NAME1_3
      4         1 NAME1_4
      5         1 NAME1_5
      6         1 NAME1_6
      7         2 NAME2_1
      8         2 NAME2_2
      9         2 NAME2_3
    10         2 NAME2_4
    CARS
    ====
    ID GARAGE_ID CAR
      1         1 CAR1_1
      2         1 CAR1_2
      3         1 CAR1_3
      4         1 CAR1_4
      5         2 CAR2_1
      6         1 CAR2_2
      7         1 CAR2_3
      8         1 CAR2_4
      9         1 CAR2_5
    10         1 CAR2_6
    The required output is:
    GARAGE_ID GARAGE_NAME CAR    PERSON
            1    GARAGE_1 CAR1_1 NAME1_1
            1    GARAGE_1 CAR1_2 NAME1_2
            1    GARAGE_1 CAR1_3 NAME1_3
            1    GARAGE_1 CAR1_4 NAME1_4
            1    GARAGE_1        NAME1_5
            1    GARAGE_1        NAME1_6
            2    GARAGE_2 CAR2_1 NAME2_1
            2    GARAGE_2 CAR2_2 NAME2_2
            2    GARAGE_2 CAR2_3 NAME2_3
            2    GARAGE_2 CAR2_4 NAME2_4
            2    GARAGE_2 CAR2_5
            2    GARAGE_2 CAR2_6 How can I achieve this output?
    Is it an issue for analytical SQL?
    Dear community, I need your help!
    Kind regards

    Looks like just an outer join..
    But how are you jining cars and persons -- based on name?
    Or Something like this?
    with c as
      select c.garage_id,c.car,g.garage_name g_name,
             row_number() over(partition by c.garage_id order by c.id) rn
      from cars c,garage g
      where c.garage_id = g.id
    p as
      select p.garage_id,p.name p_name,g.garage_name g_name,
             row_number() over(partition by p.garage_id order by p.id) rn
      from persons p,garage g
      where p.garage_id = g.id
    select nvl(p.garage_id,c.garage_id) garage_id,
           nvl(p.g_name,c.g_name) garage_name,
           car,p_name person
    from c
         full outer join p on
          (c.garage_id = p.garage_id and c.rn = p.rn);
    GARAGE_ID GARAGE_NAME CAR    PERSON
            1 GARAGE_1    CAR1_1 NAME1_1
            1 GARAGE_1    CAR1_2 NAME1_2
            1 GARAGE_1    CAR1_3 NAME1_3
            1 GARAGE_1    CAR1_4 NAME1_4
            1 GARAGE_1           NAME1_5
            1 GARAGE_1           NAME1_6
            2 GARAGE_2    CAR2_1 NAME2_1
            2 GARAGE_2    CAR2_2 NAME2_2
            2 GARAGE_2    CAR2_3 NAME2_3
            2 GARAGE_2    CAR2_4 NAME2_4
            2 GARAGE_2    CAR2_5        
            2 GARAGE_2    CAR2_6        
    12 rows selected If this is not what you want, please explain the logic to reach at your output..
    Edited by: jeneesh on Nov 17, 2012 3:15 PM

  • Which Oracle Version or Product to download and install for Personal Use

    Hi everyone,
    I hope all of you is well.
    I would like to work on SQL and PL/SQL on Oracle software for a personal training at home. I would like to practice and improve my coding on Oracle. Regarding this, which FREE latest version of Oracle should I download into my computer?
    I really appreciate your help from now on.
    Many thanks
    Pnouma

    Welcome to the forum.
    As long it is for personal use only, you can basically download whatever it is you need.
    See:
    "Developers:
    *All software downloads are free, and most come with a Developer License that allows you to use full versions of the products at no charge while developing and prototyping your applications, or for strictly self-educational purposes.* (Unless otherwise specified, our technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement.) You can buy products with full-use licenses at any time from the online Store or from your sales representative."
    http://www.oracle.com/technetwork/indexes/downloads/index.html?ssSourceSiteId=ocomen

  • PDF Printing  APEX 3.2.1  (APACHE FOP) which OC4J version  for Oracle 11g?

    I am using APEX 3.2.1 on Oracle 11.g (under windows XP)
    I want to test PDF printing (in advanced turorial) with standard config ( APACHE FOP no Oracle BI publisher).
    When I look oracle doc : http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html)
    prerequisites for installing WAR file (Installing and Configuring Apache FOP) imply downlad for Oracle Containers for J2EE (10.1.3.2) ,
    once there : http://www.oracle.com/technology/software/products/ias/htdocs/utilsoft.html)
    the accessed page seems restricted to Oracle Application Server 10g Software Downloads.
    My question : is the last Version (10.1.3.5.0 : Oracle Containers for J2EE 10g (OC4J) (build #090727, 91 MB) - J2EE 1.4 compatible with EJB 3.0 / JPA 1.0 support ) also VALID for Oracle 11g ?

    I just installed a similar setup with the following software combination and it works.
    win32_11gR1_database.zip
    oc4j_extended_101350.zip
    jdk-1_5_0_22-windows-i586-p.exe

  • Transfer data from two oracle version to one sql server 2005

    Hi,
    I have two database servers on different machines. They are
    1) Oracle 8.1.7.4
    2) Oracle 7.3.1.4
    I have to create agents which can transfer tables from these two databases to one machine having sql server 2005 database.
    Please tell me what are the options. What drivers i need to install on machine having sql server 2005 so that i can transfer data from both oracle versions.
    Thanks
    Rajneesh.

    Your Oracle databases are so old you might want to look around and see if you can find dinosaur bones near by.
    Given the differences in data types between Oracle and SQL Server I'd suggest you start off by dumping the data into delimited ASCII files and then loading it using whichever SQL Server tool you wish.

  • Oracle Gateway for MS SQL Server

    I have a oracle 10g database installed on Linux platform. I have installed oracle 11g gateways in the same system in a different location other than that of ORACLE_HOME.
    I have configured the initdg4msql.ora and configured the listener in the ORACLE_HOMEs listener.ora
    When I try to query the SQL Server table with the db link then I am getting the following error
    Error starting at line 1 in command:
    select * from dbo.jobs@testlink
    Error at Command Line:1 Column:23
    Error report:
    SQL Error: ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Oracle][ODBC SQL Server Driver][libssclient22]ConnectionOpen.[Oracle][ODBC SQL Server Driver]Invalid connection string attribute
    ORA-02063: preceding 2 lines from TESTLINK
    the following is my initdg4msql.ora configuration:
    # This is a customized agent init file that contains the HS parameters
    # that are needed for the Database Gateway for Microsoft SQL Server
    # HS init parameters
    HS_FDS_CONNECT_INFO=sqlserv:1433//pubs
    # alternate connect format is hostname/serverinstance/databasename
    HS_FDS_TRACE_LEVEL=DEBUG
    HS_FDS_RECOVERY_ACCOUNT=RECOVER
    HS_FDS_RECOVERY_PWD=RECOVER
    can anyone tell me where am I going wrong?

    the patch is not applied to 10g db. Here is the last few lines of the dg4msql trace file
    Entered hgocont at 2007/11/13-12:38:05
    HS_FDS_CONNECT_INFO = "sqlserv:1433//pubs"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2007/11/13-12:38:05
    dsn:sqlserv:1433//pubs, name:sa
    optn:
    Entered shgogohn at 2007/11/13-12:38:05
    Exiting shgogohn, rc=28500 at 2007/11/13-12:38:05
    Entered hgocont_OracleCsidToIANA at 2007/11/13-12:38:05
    Returning 3
    Exiting hgocont_OracleCsidToIANA at 2007/11/13-12:38:05
    ##>Connect Parameters (len=200)<##
    ## DRIVER=Oracle 11g dg4msql;
    ## Address=sqlserv,1433;
    ## Database=pubs;
    #! UID=sa;
    #! PWD=*
    ## AnsiNPW=Yes;
    ## QuotedId=Yes;
    ## IANAAppCodePage=3;
    ## ArraySize=100;
    ## PadVarbinary=0;
    ## SupportNumericPrecisionGreaterThan38=1;
    Exiting hgogenconstr, rc=0 at 2007/11/13-12:38:05
    Entered hgopoer at 2007/11/13-12:41:14
    hgopoer, line 159: got native error 0 and sqlstate HYT00; message follows...
    [Oracle][ODBC SQL Server Driver][libssclient22]ConnectionOpen.[Oracle][ODBC SQL Server Driver]Invalid connection string attribute
    Exiting hgopoer, rc=0 at 2007/11/13-12:41:14
    hgocont, line 1890: calling SqlDriverConnect got sqlstate HYT00
    Exiting hgocont, rc=28500 at 2007/11/13-12:41:14 with error ptr FILE:hgocont.c LINE:1910 FUNCTION:hgocont() ID:Something other than invalid authorization
    Exiting hgolgon, rc=28500 at 2007/11/13-12:41:14 with error ptr FILE:hgolgon.c LINE:612 FUNCTION:hgolgon() ID:Calling hgocont
    Entered hgoexit at 2007/11/13-12:41:14
    Exiting hgoexit, rc=0 at 2007/11/13-12:41:14

  • Oracle gateway for MS sql server 2005

    Is Oracle 9i Gateway for MS SQL Server compatible with SQL 2005? If not what are the other options?

    Check the support matrix at metalink.
    But be advised that Oracle 9i is in desupport mode.

  • I would like write Oracle OCA for PL/SQL developer.

    Dear Experts,
    I would like to take Oracle OCA test for PL/SQL Developer path. what is the exam code and syllabus.
    Please guide me...
    Thank you & Regards
    Raju P

    R@ju wrote:
    Dear Experts,
    I would like to take Oracle OCA test for PL/SQL Developer path. what is the exam code and syllabus.
    Please guide me...
    Thank you & Regards
    Raju PVisit http://www.oracle.com/education/certification and a little browsing should find the information. I suggest 1z0-051 + 1z0-144 but there are alternatives.

  • Manadatory SP stack and which kernel version for source Release 4.6c

    Hello!
    I have the following questions:
    - Which support package stack and which kernel version are mandatory for Source Release 4.6?
    - Has the SAP Business connector still any supports?
    And some additional question regardind connection Lotus Notes with ERP 2005:
    - What is the procedure to connect Lotus Notes and ERP 2005 (Do we need RFC-connects or RFC/BAPI?)
    Can anyone help out or recommend how to proceed?
    Thank you!
    Regards
    Axel

    First I would like to recommend getting a good basis consultant to do that whole process. If you have never done such kind of big technical upgrade/conversion before it can become a totally frustrating experience.
    >  Do you all do Unicode Conversion first before going for upgrade process ?
    4.6c is not available as Unicode. During the PREPARE programs/transactions will be imported to the 4.6c system where you have to run all the preprocessing step mentioned in the Unicode conversion guide. After that is finished, the system is upgraded and immediately after the exported and to be imported as a Unicode system.
    Anyone have experience in doing CUUC to EHP4 under single upgrade ? My colleagues have upgraded 4.6C -> ERP 6.0 for EHP 1 only and we want to perform EHP4 and Unicode Conversion under single project. Appreciate anyone advice on this.
    There are many many things to look after, too much to list here in a forum. As suggested I'd consider getting a basis consultant with experience in that area.
    Markus

  • Which Excel version for SEM-BPS 4.0?

    Hello! Anyone knows which Excel version works best or is minimum requirement for SEM-BPS4.0 (together with BW3.5). The intended use is Excel planning within SAP GUI.
    Thanks,
    Auvo Ahola

    At least Excel 2000.
    Regards

Maybe you are looking for

  • My itunes doesn't recognize my iphone

    I have a Iphone 3Gs and a MacBook and they was working fine some weeks ago. Today they don't work properly. I erase itunes and download it again. Restore iphone, but didn't work. Can you help me.? Thanks for any help. Kind regards, Olga

  • External monitor briefly flashes black about once a minute

    Since upgrading to Lion, the external Apple Cinema Display attached to my MacBook Pro flashes to a black screen and back again roughly once per minute. It's maddening and distracting. It seems to happen more frequently when QuickTime Player is active

  • Shell script calling SQL Program and passing parameters

    Hi guys, Greetings from Toronto. Is it possible to pass a string or strings as parameters to a sql program from a shell script ? Shell Script # Accept system input parameters p_user_id=$1 p_job_id=$2 sqlplus.exe -s $p_user_id @$RD_PATH/rd_test.sql $p

  • Access laptop internet through bluetooth ?and...

    I have a laptop which has a datacard on another network cause the area im in doesnt have att coverage for my iphone. what i would like to know is if its possible to connect my iphone to use my laptops datacard internet through a bluetooth connection

  • Configuration Guide

    Hi everybody, i am looking for the Self-Service Procurement: Configuration Guide for SRM 5.0. At the service marketplace I could only find the guide for SRM 4.0. Does anybody know where to get it? Kind regards AD