DBMS_SPACE.OBJECT_GROWTH_TREND without Diagnostics Pack

Hi ,
Can i use DBMS_SPACE.OBJECT_GROWTH_TREND without Diagnostics Pack? As per the docs this procedure uses AWR for information retrieval.
Also I've seen that there are multiple bugs related to this in <10.2.0.3. Can some one share their experiences with this option.
My objective here is to observe past object growth at database/object level. This seems to be the ONLY option provided by oracle for this.Any other hints apart from custom scripts.
Thanks
Ravi

Thanks for the info Brain.
As per the licencing docs AWR is part of Diagnostics pack. I'm not supposed to access any AWR tables without proper licence. It also mentions set of packages which will use the AWR information and i'm not supposed to use those packages as well. But no where in the licencing document there is a information about DBMS_SPACE package.
Having said all this, licencing doc also mentions that there are few tables/view that start with DBA_HIST, which can be used WITHOUT licence.
I need to know if there is any clear YES or NO kind of information for my question. Any information you have will be highly helpful.
Thanks,
Ravi.M

Similar Messages

  • EWA without Diagnostics

    Hi There
    We are planning on setting up EWA in an Solution Manager 7.0 Ehp1 system.
    Our Landsacpe consists of 4.7 R3 systems based on SAP_BASIS 6.20 and BI systems based on Netweaver 7.0. All the systems, Logical componenets and Solutions have been setup in SMSY on the Sol Man system.
    We are not planning on implementing Diagnostics in the near future and we have do not have CCMS setup in  any of the R3 or BI systems.
    Now is there any value in just setting up EWA for these systems in SOl Man. If we turn on SDCCN in the R3 and BI systems what kind of alerts will I be able to see in Sol Man system, assuming that all config related to EWA (SDCCN) has been setup in Sol man and satelliet systems.
    Also, we have configured the production systems in a separate solution.
    If I regsiter this solution with SAP will I be getting any reports on the health of the systems based on the current config ?
    Will EWA collect statistics from saposcol in each system and generate any valuable reports OR will EWA without CCMS setup (OR Diagnostics) not yield any report ?
    Thanks

    Hi Sapkid,
    You can configure EWA without diagnostics and later add the same with diagnostics. The initial prerequisite of configuring diagnostics is Activating SDCCN , Early watch alerts etc, We call it as Starter solution manager pack. Once this is done, we can proceed with configuring diagnostics by installing wily IM , SMD agents etc.
    Please go ahead and configure EWA  and diagnostics can be added at later stage.
    Best regards,
    Vin

  • Space Management - DBMS_SPACE.OBJECT_GROWTH_TREND - how to execute

    I am exploring the use of the package DBMS_SPACE and in particular the function OBJECT_GROWTH_TREND.
    I have two problems at the moment. I am only able to execute this function when I am logged in as SYS. I would like to run the function as another user but I can't quite work out which privileges I need to grant that user. The documentation says you must have 'SYS' privileges. Execute privilege is already granted to PUBLIC so I can't see that being the problem.
    In a test database where I log on as SYS I am able to execute the function however in that environment the function only returns one row with the current size when what I am interested in is a future growth projection. Does anyone know why I would only get one row ? My Oracle version is 10 g Rel 2 and below is an example of the query I used to invoke the function:
    select * from table(dbms_space.OBJECT_GROWTH_TREND ('HR','EMPLOYEES','TABLE',NULL,
    TO_TIMESTAMP('2008-05-16 11:00:00','YYYY-MM-DD HH:MI:SS'), TO_TIMESTAMP ('2008-06-01 11:00:00', 'YYYY-MM-DD HH:MI:SS'), INTERVAL '1' DAY ))

    Hi,
    I have some good notes on using object_growth_trend here:
    http://www.oracle-training.cc/t_oracle_segment_growth_prediction.htm
    Also, consider making your own growth monitor:
    http://www.dba-oracle.com/te_table_monitoring.htm
    You can also see the growth of the whole database with this Oracle growth tracking script. Below is a great script to display table size changes between two periods.
    column "Percent of Total Disk Usage" justify right format 999.99
    column "Space Used (MB)" justify right format 9,999,999.99
    column "Total Object Size (MB)" justify right format 9,999,999.99
    set linesize 150
    set pages 80
    set feedback off
    select * from (select to_char(end_interval_time, 'MM/DD/YY') mydate, sum(space_used_delta) / 1024 / 1024 "Space used (MB)", avg(c.bytes) / 1024 / 1024 "Total Object Size (MB)",
    round(sum(space_used_delta) / sum(c.bytes) * 100, 2) "Percent of Total Disk Usage"
    from
    dba_hist_snapshot sn,
    dba_hist_seg_stat a,
    dba_objects b,
    dba_segments c
    where begin_interval_time > trunc(sysdate) - &days_back
    and sn.snap_id = a.snap_id
    and b.object_id = a.obj#
    and b.owner = c.owner
    and b.object_name = c.segment_name
    and c.segment_name = '&segment_name'
    group by to_char(end_interval_time, 'MM/DD/YY'))
    order by to_date(mydate, 'MM/DD/YY');
    Hope this helps. . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference":
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • Dbms_space.object_growth_trend: ORA-22905

    RDBMS: 10.1.0.5.0
    SQL> SELECT * FROM TABLE(dbms_space.object_growth_trend('JO', 'TAB1', 'TABLE'));
    SELECT * FROM TABLE(dbms_space.object_growth_trend('JO', 'TAB1', 'TABLE'))
    ERROR at line 1:
    ORA-22905: cannot access rows from a non-nested table itemWhy?

    RDBMS: 10.1.0.5.0
    SQL> SELECT * FROM TABLE(dbms_space.object_growth_trend('JO', 'TAB1', 'TABLE'));
    SELECT * FROM TABLE(dbms_space.object_growth_trend('JO', 'TAB1', 'TABLE'))
    ERROR at line 1:
    ORA-22905: cannot access rows from a non-nested table itemWhy?

  • DBMS_SPACE.OBJECT_GROWTH_TREND returns ORA-14551

    Hi,
    When I used DBMS_SPACE.OBJECT_GROWTH_TREND, it ran successfully but ended with an error.
    SQL> SELECT * FROM V$VERSION ;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
    PL/SQL Release 11.1.0.6.0 - Production
    CORE    11.1.0.6.0      Production
    TNS for 32-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    SQL> SHOW USER
    USER is "SYS"
    SQL> SELECT *
      2  FROM
      3  table(
      4   DBMS_SPACE.OBJECT_GROWTH_TREND (
      5    object_owner =>'HR',
      6    object_name  =>'NAMES',
      7    object_type  =>'TABLE',
      8    partition_name =>NULL,
      9    start_time =>NULL,
    10    end_time   =>NULL,
    11    interval   =>to_dsinterval('0 00:10:00')  ,
    12    skip_interpolated => 'FALSE',
    13    timeout_seconds =>NULL,
    14    single_datapoint_flag =>'TRUE')
    15  )
    16  /
    TIMEPOINT                      SPACE_USAGE SPACE_ALLOC QUALITY
    04-OCT-09 03.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.08.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.18.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.28.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.38.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.48.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 04.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 05.08.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 05.18.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 05.28.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 05.38.47.421000 PM      10443367    11534336 INTERPOLATED
    TIMEPOINT                      SPACE_USAGE SPACE_ALLOC QUALITY
    04-OCT-09 05.48.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 05.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.08.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.18.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.28.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.38.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.48.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 06.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 07.08.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 07.18.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 07.28.47.421000 PM      10443367    11534336 INTERPOLATED
    TIMEPOINT                      SPACE_USAGE SPACE_ALLOC QUALITY
    04-OCT-09 07.38.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 07.48.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 07.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.08.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.18.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.28.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.38.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.48.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 08.58.47.421000 PM      10443367    11534336 INTERPOLATED
    04-OCT-09 09.08.47.421000 PM      10443367    11534336 PROJECTED
    04-OCT-09 09.18.47.421000 PM      10443367    11534336 PROJECTED
    TIMEPOINT                      SPACE_USAGE SPACE_ALLOC QUALITY
    04-OCT-09 09.28.47.421000 PM      10443367    11534336 PROJECTED
    04-OCT-09 09.38.47.421000 PM      10443367    11534336 PROJECTED
    04-OCT-09 09.48.47.421000 PM      10443367    11534336 PROJECTED
    36 rows selected.
    EXCEPTION in chrow processing -  code: -14551  msg: ORA-14551: cannot perform a
    DML operation inside a query*
    -- changed to another table for testing
    SQL> ED
    Wrote file afiedt.buf
      1  SELECT *
      2  FROM
      3  table(
      4   DBMS_SPACE.OBJECT_GROWTH_TREND (
      5    object_owner =>'HR',
      6    object_name  =>'EMPLOYEES',
      7    object_type  =>'TABLE',
      8    partition_name =>NULL,
      9    start_time =>NULL,
    10    end_time   =>NULL,
    11    interval   =>to_dsinterval('0 00:10:00')  ,
    12    skip_interpolated => 'FALSE',
    13    timeout_seconds =>NULL,
    14    single_datapoint_flag =>'TRUE')
    15* )
    SQL> /
    TIMEPOINT                      SPACE_USAGE SPACE_ALLOC QUALITY
    04-OCT-09 04.09.20.343000 PM         12614       65536 GOOD
    EXCEPTION in chrow processing -  code: -14551  msg: ORA-14551: cannot perform a
    DML operation inside a query

    DECLARE
    v_object_owner VARCHAR2 (30):='ME';
    v_object_name VARCHAR2 (30):='ACCOUNTS';
    v_object_type VARCHAR2 (30):='TABLE PARTITION';
    v_partition_name VARCHAR2 (30):='PAF19960501';
    v_objrefcursor sys_refcursor;
    r_obj_trend DBMS_SPACE.object_growth_trend_row;
    CURSOR c_parts (p_owner IN VARCHAR2, p_table IN VARCHAR2)
    IS
    SELECT table_owner, table_name, partition_name
    FROM dba_tab_partitions
    WHERE table_owner = p_owner AND table_name = p_table
    order by partition_name;
    BEGIN
    FOR r IN c_parts ('ME', 'ACCOUNTS')
    LOOP
    v_objrefcursor :=
    DBMS_SPACE.object_growth_trend_cur (
    object_owner => v_object_owner,
    object_name => v_object_name,
    object_type => v_object_type,
    partition_name => v_partition_name,
    start_time => sysdate - 120,
    end_time => sysdate + 30,
    interval =>null,
    skip_interpolated => 'FALSE',
    timeout_seconds => 360
    loop
    FETCH v_objrefcursor INTO r_obj_trend;
    exit when v_objrefcursor%notfound;
    -- if r_obj_trend.SPACE_USAGE * 1.5 <= r_obj_trend.SPACE_ALLOC THEN
    DBMS_OUTPUT.PUT_LINE( v_object_name ||' '||v_partition_name
    || ' '
    || r_obj_trend.timepoint
    || ' '
    || r_obj_trend.SPACE_USAGE
    || ' '
    || r_obj_trend.SPACE_ALLOC
    || ' '
    || r_obj_trend.quality);
    -- end if;
    END LOOP;
    end loop;
    CLOSE v_objrefcursor;
    END;
    EXCEPTION in chrow processing - code: -1031 msg: ORA-01031: insufficient privileges
    ACCOUNTS PAF19960501 18-DEC-09 06.49.07.857150 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 23-DEC-09 01.40.33.571436 AM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 27-DEC-09 08.31.59.285722 AM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 31-DEC-09 03.23.25.000008 PM 32768 196608 GOOD
    ACCOUNTS PAF19960501 04-JAN-10 10.14.50.714294 PM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 09-JAN-10 05.06.16.428580 AM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 13-JAN-10 11.57.42.142866 AM 32768 196608 PROJECTED
    EXCEPTION in chrow processing - code: -1031 msg: ORA-01031: insufficient privileges
    ACCOUNTS PAF19960501 02-SEP-09 03.23.25.000000 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 06-SEP-09 10.14.50.714286 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 11-SEP-09 05.06.16.428572 AM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 31-DEC-09 03.23.25.000008 PM 32768 196608 GOOD
    ACCOUNTS PAF19960501 04-JAN-10 10.14.50.714294 PM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 09-JAN-10 05.06.16.428580 AM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 13-JAN-10 11.57.42.142866 AM 32768 196608 PROJECTED
    EXCEPTION in chrow processing - code: -1031 msg: ORA-01031: insufficient privileges
    ACCOUNTS PAF19960501 02-SEP-09 03.23.25.000000 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 06-SEP-09 10.14.50.714286 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 11-SEP-09 05.06.16.428572 AM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 31-DEC-09 03.23.25.000008 PM 32768 196608 GOOD
    ACCOUNTS PAF19960501 04-JAN-10 10.14.50.714294 PM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 09-JAN-10 05.06.16.428580 AM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 13-JAN-10 11.57.42.142866 AM 32768 196608 PROJECTED
    EXCEPTION in chrow processing - code: -1031 msg: ORA-01031: insufficient privileges
    ACCOUNTS PAF19960501 02-SEP-09 03.23.25.000000 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 06-SEP-09 10.14.50.714286 PM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 11-SEP-09 05.06.16.428572 AM 32768 196608 INTERPOLATED
    ACCOUNTS PAF19960501 31-DEC-09 03.23.25.000008 PM 32768 196608 GOOD
    ACCOUNTS PAF19960501 17-JAN-10 06.49.07.857152 PM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 22-JAN-10 01.40.33.571438 AM 32768 196608 PROJECTED
    ACCOUNTS PAF19960501 26-JAN-10 08.31.59.285724 AM 32768 196608 PROJECTED
    EXCEPTION in chrow processing - code: -1031 msg: ORA-01031: insufficient privileges
    ACCOUNTS PAF19960501 02-SEP-09 03.23.25.000000 PM 32768 196608 INTERPOLATED
    Maybe not the best example but as you can see,
    for every switch to a different partition I get this EXCEPTION msg.
    The output seems correct otherwise.
    I can create the message several different ways!
    Row#     BANNER
    1     Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    2     PL/SQL Release 10.2.0.4.0 - Production
    3     CORE     10.2.0.4.0     Production
    4     TNS for IBM/AIX RISC System/6000: Version 10.2.0.4.0 - Productio
    5     NLSRTL Version 10.2.0.4.0 - Production

  • Windows 2008 R2 Server without Service Pack 1 was flag "Not Required" during the SCCM patching/deploying SP1 for 2008

    Dear Brothers,
    I come to a scenario were one of our Windows 2008 R2 Server without Service Pack 1, was Flag under SCCM 2007 Reports Update Status for Service Pack 1 deployment to be "Not
    Required" which definitely inaccurate.
    What I want to know what are the conditions for the Software Update to send a status to SCCM Server that the Service Pack is “Not
    Required” instead of the other way around?
    Is there anyone that can guide me to any KB Article regarding this behavior?
    Regards,

    Yes, I know this is an old post, I’m trying to clean them up. Did you figure this out, if so how?
    I have seen this before and what I have done is manually applied the SP1 to the server. Only then did the error show up as why SP1 didn’t apply. After fixing the error, CM was apply to apply SP1 and other SU to the server.
    http://www.enhansoft.com/

  • Errors in OEM with Diagnostics Pack

    all,
    when login as oracle, the user used to install oracle9i and oem I can access diagnostics pack under oem. However when accessing it as different user and clicking on diagnostics pack and login in I am getting this:
    VTD-0123: Error connecting to target PROD
    No Collection Cartridge of this service type are available.
    Any idea? Thanks.

    Please read note 278967.1 on metalink.

  • How do you convert audio to ac3 in DVD SP 4 without a.pack

    how do you convert audio to ac3 in DVD SP 4 without a.pack
    thanks
    Josh

    NO. If you let DVDSP make your encoding you'll get uncompressed audio (AIFF/PCM) what means most probably high bitrate issues during building/playback and a lot of the space of your disc.
      Alberto

  • Link to download the server 2008 r2 enterprise without service pack

    Hi,
    Please provide the link to download the server 2008 r2 enterprise without service pack
    Thank You!!

    Hi,
    Please check the below download links:
    Windows Server 2008 R2 Enterprise Edition x64 (Full Install) VHD
    http://www.microsoft.com/en-us/download/details.aspx?id=2227
    Windows Server 2008 R2 Enterprise Edition x64 (Core Install) VHD
    http://www.microsoft.com/en-in/download/details.aspx?id=18348
    Windows Server 2008 R2 Evaluation (180 days)
    http://www.microsoft.com/en-in/download/details.aspx?id=11093
    And we could refer to the download center for more information:
    download Center
    http://www.microsoft.com/en-us/download/default.aspx
    Hope this may help
    Best regards
    Michael
    If you have any feedback on our support, please click
    here.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Remove Diagnostics Pack, Database Tuning Pack :Oracle 10g

    Hi All,
    I want to remove Application Server Configuration Pack, Application Server Diagnostics Pack, Database Configuration Pack, Database Diagnostics Pack, Database Tuning Pack from 10g due to license restriction. How can I remove these packs from command line syntax in 10g as I don't have GUI access so unable to perform from OEM?
    Regards

    Thanks Srini,
    According to link provided by you we can revoke license with emcli tool but it is not installed with current database (10.2.0.4.0).
    Please advice is there any procedure available which can disable all these packs in 10g.
    Regards

  • Diagnostics Pack License Question

    How do I know if I am authorized to use diagnostics pack of OEM? Is there any way to stop people from using AWR or addm thru command line?
    Thanks
    DP

    Check you licensing agreement to see if you licensed the diagnostics pack. If you did not make the purchase, you might need to talk either to your purchasing department or call you Oracle sales representative.
    You can turn off access to the diagnostic pack as well as other packs through OEM on the Set up page. Click the Management Pack Access link to disable the pack(s) per database.

  • License costs for Performance and Diagnostics packs

    Does anyone have a reference to Oracle's 11G licensing structure that includes the list price for Oracle's Management Packs, specifically the Performance and Diagnostics packs?
    This is what I have already:
    Processor core factor table (very important depending on the hardware platform you are using)
    http://www.oracle.com/corporate/contracts/library/processor-core-factor-table.pdf
    Oracle License and Services Agreement V121809
    http://oraclestore.oracle.com/OA_HTML/ibeCCtpSctDspRte.jsp?section=11365&media=os_local_license_agreement&minisite=10021&respid=22372&grp=STORE&language=US
    Thank you in advance...

    have you looked at
    http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/toc.htm
    and
    http://www.oracle.com/corporate/pricing/sig.pdf
    http://www.oracle.com/corporate/pricing/eplext.pdf
    http://www.oracle.com/corporate/pricing/technology-price-list.pdf
    HTH -- Mark D Powell --

  • Oracle Diagnostics Pack

    I would like to install Oracle Diagnostics Pack and Oracle Tuning Pack for Oracle 8i. However, I cannot find anywhere to download the packs. Is it bundle with the Oracle 8i installation CD?

    Correct. The only way to tell if you have a license to use the Diagnostic pack is to search your purchase invoices and license contracts to see what is written there.
    There is nothing in the database itself that will tell you whether you are licensed to use a particular feature
    However if you know the license you are using for your Oracle database is standard then you cannot be licensed for the Diagnostic pack because Oracle does not allow you to license that option with standard edition.

  • How Install OEM Management Pack / Tuning Pack / Diagnostics Pack for 10g ?

    Where I find Management Pack / Tuning Pack / Diagnostics Pack for 10g ?

    There's no 1:1 relationship between the old and the new features. Mainly under the Performance tab you will find the features now. Out-of-the-box there are a lot of alerts active (disk and CPU utilization, tablespace getting full, bad SQL statements ...), these are shown automatically for a specific target, when a certain metric has reached. You can customize pre-configured alerts and also create new ones.
    I recommend you see the gridcontrol documentation for more informations.

  • Are Tuning pack, Diagnostics pack available on Oracle 9i?

    hi,
    Tuning pack, Diagnostics pack are available on oracle 9i?
    If yes, how can I set it?
    thanks & regards,

    You are confusing one for the other. You have probably heard of AWR requiring the Diagnostics Pack and wonder what the pack can do in 9i if AWR is not available in 9i.
    Usage of AWR and related features available from 10g requires the Diagnostics Pack. However, usage of the SQL Advisors requires the Tuning Pack.
    The two are separate packs. These are products from the Oracle Enterprise Manager stack.
    Tuning Pack and Diagnostics Packs have been available in 8i as well.
    So, you can purchase these packs in 8i, 9i, 10g, 11g . If you have purchased them and paid annual support fees, you can upgrade them.
    What you can do with the packs may well vary in each version. Thus, AWR is not available in 9i and below.
    8i : http://download.oracle.com/docs/cd/A87860_01/doc/em.817/a85250/ch5.htm#1007872
    9i : http://download.oracle.com/docs/cd/B10501_01/em.920/a96674/packs.htm#1015821
    Since 10g, Oracle also includes a Licencing Guide in the documentation set.
    See http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm#CIHGFIAF
    and http://download.oracle.com/docs/cd/B19306_01/license.102/b40010/toc.htm
    Hemant K Chitale

Maybe you are looking for

  • Problem while creating Functional module

    Hi Experts. I was trying to create one FM for currency conversion purpose.The code as follows. FUNCTION Z_TEST_CUR_RATE. ""Local Interface: *"  IMPORTING *"     VALUE(TYPE_OF_RATE) LIKE  TCURR-KURST *"     VALUE(DATE) LIKE  SY-DATUM *"     VALUE(FORE

  • Filter function causing 0 items in combo box

    HI there, I have combobox with the dataProvider set up like below     <mx:ComboBox rowCount="10" id="selectUser"                      dataProvider="{VO.getInstance().clientsResultForAddTrade}" width="258"                     x="28" y="10" >          

  • Java implementation from WSDL file

    Hello All I am working on my thesis and have to deal with web services. I have a WSDL file where I have to create the Java implementation for and deploy it to TomCat which is comming with JWSDP1.3. The steps I do are as follow: 1. Get the WSDL file 2

  • Can I use Apple TV if I don't have an HDTV?

    Can I use Apple TV if I don't have an HDTV?

  • Upgrading ODI 10.1.3.4.6 to 10.1.3.5.0

    How to upgrade ODI agent and ODI repository to 10.1.3.5.0? Currently we have ODI agent and repository with version 10.1.3.4. --- Thanks, B